summaryrefslogtreecommitdiff
path: root/gtk2_ardour/editor_locations.h
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2011-01-03 18:53:46 +0000
committerCarl Hetherington <carl@carlh.net>2011-01-03 18:53:46 +0000
commit741427d98ff34f822e1f0ebce42cf08b70e10e96 (patch)
tree9f7ea332c1265c484cc7037854a38c747ccaf69c /gtk2_ardour/editor_locations.h
parent544d8f33c8e3396665fbb5f93a912bd7e121d31a (diff)
Give the locations editor tab a horizontal scrollbar if needs be. Fixes #3643.
git-svn-id: svn://localhost/ardour2/branches/3.0@8421 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/editor_locations.h')
-rw-r--r--gtk2_ardour/editor_locations.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/gtk2_ardour/editor_locations.h b/gtk2_ardour/editor_locations.h
index 414a57ee7d..36926bbec8 100644
--- a/gtk2_ardour/editor_locations.h
+++ b/gtk2_ardour/editor_locations.h
@@ -20,6 +20,7 @@
#ifndef __gtk_ardour_editor_locations_h__
#define __gtk_ardour_editor_locations_h__
+#include <gtkmm/scrolledwindow.h>
#include "ardour/session_handle.h"
#include "editor_component.h"
@@ -39,7 +40,8 @@ class EditorLocations : public EditorComponent, public ARDOUR::SessionHandlePtr
Gtk::Widget& widget ();
private:
- LocationUI* locations;
+ Gtk::ScrolledWindow _scroller;
+ LocationUI* _locations;
};