From e2e75d83460bb061c8cbdadfad041201e4fd6134 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Wed, 22 Jul 2015 18:05:25 -0400 Subject: [PATCH] add explanatory/reminder comment --- gtk2_ardour/ardour_ui.cc | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/gtk2_ardour/ardour_ui.cc b/gtk2_ardour/ardour_ui.cc index f42f035efa..bd2b437c2b 100644 --- a/gtk2_ardour/ardour_ui.cc +++ b/gtk2_ardour/ardour_ui.cc @@ -5117,6 +5117,10 @@ ARDOUR_UI::setup_toplevel_window (Gtk::Window& window, const string& name, void* window.set_flags (CAN_FOCUS); window.add_events (Gdk::KEY_PRESS_MASK|Gdk::KEY_RELEASE_MASK); + /* This is a hack to ensure that GTK-accelerators continue to + * work. Once we switch over to entirely native bindings, this will be + * unnecessary and should be removed + */ window.add_accel_group (ActionManager::ui_manager->get_accel_group()); window.signal_configure_event().connect (sigc::mem_fun (*this, &ARDOUR_UI::configure_handler));