summaryrefslogtreecommitdiff
path: root/gtk2_ardour/editor.cc
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2017-03-20 16:30:33 +0100
committerRobin Gareus <robin@gareus.org>2017-03-20 17:12:08 +0100
commit4491722eaef2155cc1badba920cf7817eb42d709 (patch)
treedacb5ffa078b47f4b2c86ef6cae5089a1941e7fa /gtk2_ardour/editor.cc
parent235631a618de23793f0915aa7dc9b2f669b766f9 (diff)
Editor: forward unmap events to widgets
Diffstat (limited to 'gtk2_ardour/editor.cc')
-rw-r--r--gtk2_ardour/editor.cc5
1 files changed, 3 insertions, 2 deletions
diff --git a/gtk2_ardour/editor.cc b/gtk2_ardour/editor.cc
index 66c1e8af86..860a401839 100644
--- a/gtk2_ardour/editor.cc
+++ b/gtk2_ardour/editor.cc
@@ -57,6 +57,7 @@
#include <gtkmm/menuitem.h>
#include "gtkmm2ext/bindings.h"
+#include "gtkmm2ext/eventboxext.h"
#include "gtkmm2ext/grouped_buttons.h"
#include "gtkmm2ext/gtk_ui.h"
#include <gtkmm2ext/keyboard.h>
@@ -762,11 +763,11 @@ Editor::Editor ()
ebox->set_name("EditorWindow");
ebox->add (toolbar_hbox);
- Gtk::EventBox* epane_box = manage (new Gtk::EventBox); //a themeable box
+ Gtk::EventBox* epane_box = manage (new Gtkmm2ext::EventBoxExt); //a themeable box
epane_box->set_name("EditorWindow");
epane_box->add (edit_pane);
- Gtk::EventBox* epane_box2 = manage (new Gtk::EventBox); //a themeable box
+ Gtk::EventBox* epane_box2 = manage (new Gtkmm2ext::EventBoxExt); //a themeable box
epane_box2->set_name("EditorWindow");
epane_box2->add (global_vpacker);