13
0
git-svn-id: svn://localhost/ardour2/branches/3.0@13075 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Paul Davis 2012-07-24 16:35:59 +00:00
parent 0462a3e413
commit e284a53349

View File

@ -293,15 +293,16 @@ EditorSummary::on_enter_notify_event (GdkEventCrossing*)
{
grab_focus ();
Keyboard::magic_widget_grab_focus ();
cerr << "ES enter, grabbed focus\n";
return false;
}
bool
EditorSummary::on_leave_notify_event (GdkEventCrossing*)
{
/* there are no inferior/child windows, so any leave event means that
we're gone.
*/
Keyboard::magic_widget_drop_focus ();
cerr << "ES leave\n";
return false;
}