mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-10 07:26:32 +01:00
manually fix up some issues with new MixerActor API
This commit is contained in:
parent
1d4c6b9486
commit
1205603ab6
3 changed files with 9 additions and 4 deletions
|
|
@ -969,10 +969,9 @@ ArdourButton::on_focus_out_event (GdkEventFocus* ev)
|
|||
}
|
||||
|
||||
bool
|
||||
ArdourButton::on_key_release_event (GdkEventKey *ev) {
|
||||
if (_focused &&
|
||||
(ev->keyval == GDK_KEY_space || ev->keyval == GDK_Return))
|
||||
{
|
||||
ArdourButton::on_key_release_event (GdkEventKey *ev)
|
||||
{
|
||||
if (_focused && (ev->keyval == GDK_KEY_space || ev->keyval == GDK_Return)) {
|
||||
signal_clicked();
|
||||
if (_action) {
|
||||
_action->activate ();
|
||||
|
|
|
|||
|
|
@ -446,3 +446,8 @@ void MixerBridgeView::delete_processors ()
|
|||
{
|
||||
/* does nothing in Tracks */
|
||||
}
|
||||
|
||||
void MixerBridgeView::select_none ()
|
||||
{
|
||||
/* does nothing in Tracks */
|
||||
}
|
||||
|
|
|
|||
|
|
@ -56,6 +56,7 @@ class MixerBridgeView :
|
|||
void set_route_targets_for_operation ();
|
||||
void toggle_midi_input_active (bool flip_others);
|
||||
void delete_processors ();
|
||||
void select_none ();
|
||||
|
||||
private:
|
||||
Gtk::Container& _mixer_strips_home;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue