We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9a45e0f commit 006a4c0Copy full SHA for 006a4c0
gtk2_ardour/mixer_ui.cc
@@ -390,13 +390,16 @@ Mixer_UI::use_own_window (bool and_fill_it)
390
391
Gtk::Window* win = Tabbable::use_own_window (and_fill_it);
392
393
-
394
if (win && new_window) {
395
win->set_name ("MixerWindow");
396
ARDOUR_UI::instance()->setup_toplevel_window (*win, _("Mixer"), this);
397
win->signal_event().connect (sigc::bind (sigc::ptr_fun (&Keyboard::catch_user_event_for_pre_dialog_focus), win));
398
win->set_data ("ardour-bindings", bindings);
399
update_title ();
+ if (!win->get_focus()) {
400
+ /* set focus widget to something, anything */
401
+ win->set_focus (scroller);
402
+ }
403
}
404
405
return win;
0 commit comments