Removed some debug messages
This commit is contained in:
parent
ec78f73ca9
commit
73f7380506
1 changed files with 2 additions and 1 deletions
|
|
@ -186,6 +186,7 @@ void
|
||||||
TimelineLayoutHelper::drag_to_point(const Gdk::Point &mouse_point)
|
TimelineLayoutHelper::drag_to_point(const Gdk::Point &mouse_point)
|
||||||
{
|
{
|
||||||
DropPoint drop;
|
DropPoint drop;
|
||||||
|
drop.relation = None;
|
||||||
|
|
||||||
// begin_dragging_track must have been called before
|
// begin_dragging_track must have been called before
|
||||||
REQUIRE(is_dragging_track());
|
REQUIRE(is_dragging_track());
|
||||||
|
|
@ -479,7 +480,7 @@ TimelineLayoutHelper::attempt_drop(TrackTree::pre_order_iterator target,
|
||||||
|
|
||||||
// Initialize the drop
|
// Initialize the drop
|
||||||
// By specifying relation = None, the default return value will signal
|
// By specifying relation = None, the default return value will signal
|
||||||
// no drop-point was foind at point
|
// no drop-point was found at point
|
||||||
DropPoint drop = {target, None};
|
DropPoint drop = {target, None};
|
||||||
|
|
||||||
if(pt_in_rect(point, Gdk::Rectangle(0, y, full_width, half_height)))
|
if(pt_in_rect(point, Gdk::Rectangle(0, y, full_width, half_height)))
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue