add ctrl-a to select all processors in a processor box

git-svn-id: svn://localhost/ardour2/branches/3.0@6201 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Paul Davis 2009-11-28 02:18:41 +00:00
parent 1a2ced7a4a
commit 31b8f64319

View File

@ -542,6 +542,12 @@ ProcessorBox::processor_key_release_event (GdkEventKey *ev)
switch (ev->keyval) {
case GDK_a:
if (Keyboard::modifier_state_equals (ev->state, Keyboard::PrimaryModifier)) {
processor_display.select_all ();
}
break;
case GDK_c:
if (Keyboard::modifier_state_equals (ev->state, Keyboard::PrimaryModifier)) {
copy_processors (targets);