add explanatory/reminder comment

This commit is contained in:
Paul Davis 2015-07-22 18:05:25 -04:00
parent 16731d07d3
commit e2e75d8346
1 changed files with 4 additions and 0 deletions

View File

@ -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));