Remove internal edit mode and add "content" tool.
[ardour.git] / gtk2_ardour / editor_locations.cc
index c74a97fc994fb1cc624f5e9cf701fd3ef4082760..03509ac0238c858095b5d450eee149ae354cedfa 100644 (file)
@@ -28,18 +28,20 @@ using namespace Gtk;
 EditorLocations::EditorLocations (Editor* e)
        : EditorComponent (e)
 {
-       locations = new LocationUI;
+       _locations = new LocationUI ();
+       _scroller.set_policy (Gtk::POLICY_AUTOMATIC, Gtk::POLICY_NEVER);
+       _scroller.add (*_locations);
 }
 
 void
 EditorLocations::set_session (ARDOUR::Session* s)
 {
        SessionHandlePtr::set_session (s);
-       locations->set_session (s);
+       _locations->set_session (s);
 }
 
 Widget&
-EditorLocations::widget() 
+EditorLocations::widget()
 {
-       return *locations;
+       return _scroller;
 }