mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-08 07:45:00 +01:00
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:
parent
1a2ced7a4a
commit
31b8f64319
1 changed files with 6 additions and 0 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue