mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-24 07:27:44 +01:00
do not allow Primary-Shift-click to hide markers for Tracks, because there is no way to unhide them
This commit is contained in:
parent
6c82b38616
commit
3a5e349c9c
1 changed files with 3 additions and 1 deletions
|
|
@ -626,7 +626,9 @@ Editor::button_press_handler_1 (ArdourCanvas::Item* item, GdkEvent* event, ItemT
|
|||
|
||||
case MarkerItem:
|
||||
if (Keyboard::modifier_state_equals (event->button.state, Keyboard::ModifierMask(Keyboard::PrimaryModifier|Keyboard::TertiaryModifier))) {
|
||||
hide_marker (item, event);
|
||||
if (!Profile->get_trx()) {
|
||||
hide_marker (item, event);
|
||||
}
|
||||
} else {
|
||||
_drags->set (new MarkerDrag (this, item), event);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue