mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-06 06:44:57 +01:00
Clear trigger on shift+RMB (#8991)
This commit is contained in:
parent
92963230a7
commit
54ec5f87d4
1 changed files with 4 additions and 0 deletions
|
|
@ -561,6 +561,10 @@ TriggerEntry::name_button_event (GdkEvent* ev)
|
|||
#endif
|
||||
return true;
|
||||
case GDK_BUTTON_RELEASE:
|
||||
if (Gtkmm2ext::Keyboard::is_delete_event (&ev->button)) {
|
||||
clear_trigger ();
|
||||
return true;
|
||||
}
|
||||
switch (ev->button.button) {
|
||||
case 3:
|
||||
PublicEditor::instance ().get_selection ().set (this);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue