13
0

revert early change that forwarded key events to editor, since it can cause an infinite loop (i think because the event carries the window in which it occured

git-svn-id: svn://localhost/ardour2/branches/3.0@10431 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Paul Davis 2011-11-03 21:52:02 +00:00
parent 708fb03e87
commit be27c457f6

View File

@ -722,9 +722,10 @@ ProcessorBox::processor_key_press_event (GdkEventKey *ev)
case GDK_Return:
case GDK_slash:
/* do real stuff on key release */
return false;
return true;
}
return forward_key_press (ev);
return false;
}
bool