Tweak TB event passthrough

Play/Stop and Follow buttons no longer pass events up.
That way the strip will not be selected on mouse-up.
This commit is contained in:
Robin Gareus 2022-02-03 21:56:35 +01:00
parent d9ec733c47
commit e51427413c
No known key found for this signature in database
GPG key ID: A090BCE02CF57F04
2 changed files with 7 additions and 12 deletions

View file

@ -238,10 +238,6 @@ TriggerMaster::event_handler (GdkEvent* ev)
} else {
_triggerbox->stop_all_quantized ();
}
return true;
}
break;
case GDK_ENTER_NOTIFY:
@ -261,13 +257,12 @@ TriggerMaster::event_handler (GdkEvent* ev)
switch (ev->button.button) {
case 3:
context_menu ();
return true;
}
default:
break;
}
return false;
return true;
}
void