remove needlessly-added method

This commit is contained in:
Paul Davis 2014-06-05 15:22:26 -04:00
parent ad346dc638
commit 64701f3955
3 changed files with 3 additions and 7 deletions

View File

@ -713,6 +713,9 @@ RegionMotionDrag::motion (GdkEvent* event, bool first_move)
Duple rv_canvas_offset = rvg->parent()->item_to_canvas (Duple (0,0));
Duple dmg_canvas_offset = _editor->_drag_motion_group->item_to_canvas (Duple (0,0));
rv->get_canvas_group()->reparent (_editor->_drag_motion_group);
/* move the item so that it continues to appear at the
same location now that its parent has changed.
*/
rvg->move (rv_canvas_offset - dmg_canvas_offset);
}

View File

@ -1044,9 +1044,3 @@ TimeAxisViewItem::parameter_changed (string p)
set_frame_gradient ();
}
}
void
TimeAxisViewItem::visual_raise_to_top ()
{
group->raise_to_top ();
}

View File

@ -76,7 +76,6 @@ class TimeAxisViewItem : public Selectable, public PBD::ScopedConnectionList
void set_name_text_color ();
uint32_t get_fill_color () const;
void visual_raise_to_top ();
ArdourCanvas::Item* get_canvas_frame();
ArdourCanvas::Group* get_canvas_group();