mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-09 00:04:56 +01:00
pass release signal up to ArdourButton (_grabbed state)
This commit is contained in:
parent
1c83df80db
commit
d8f46c75d8
1 changed files with 4 additions and 4 deletions
|
|
@ -926,7 +926,7 @@ PluginSelector::fil_hidden_button_release (GdkEventButton*)
|
||||||
_show_hidden = (fil_hidden_button.active_state() == 0);
|
_show_hidden = (fil_hidden_button.active_state() == 0);
|
||||||
fil_hidden_button.set_active (_show_hidden);
|
fil_hidden_button.set_active (_show_hidden);
|
||||||
refill ();
|
refill ();
|
||||||
return true;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
static Gtkmm2ext::ActiveState next_state (Gtkmm2ext::ActiveState s){
|
static Gtkmm2ext::ActiveState next_state (Gtkmm2ext::ActiveState s){
|
||||||
|
|
@ -967,7 +967,7 @@ PluginSelector::fil_instruments_button_release (GdkEventButton* ev)
|
||||||
}
|
}
|
||||||
fil_instruments_button.set_active_state (_show_instruments);
|
fil_instruments_button.set_active_state (_show_instruments);
|
||||||
refill ();
|
refill ();
|
||||||
return true;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool
|
bool
|
||||||
|
|
@ -980,7 +980,7 @@ PluginSelector::fil_analysis_button_release (GdkEventButton* ev)
|
||||||
}
|
}
|
||||||
fil_analysis_button.set_active_state (_show_analysers);
|
fil_analysis_button.set_active_state (_show_analysers);
|
||||||
refill ();
|
refill ();
|
||||||
return true;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool
|
bool
|
||||||
|
|
@ -993,7 +993,7 @@ PluginSelector::fil_utils_button_release (GdkEventButton* ev)
|
||||||
}
|
}
|
||||||
fil_utils_button.set_active_state (_show_utils);
|
fil_utils_button.set_active_state (_show_utils);
|
||||||
refill ();
|
refill ();
|
||||||
return true;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue