mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-08 15:54:57 +01:00
dbl click on mixer strip name label/color button brings up color picker
This commit is contained in:
parent
6832ad2af9
commit
c9fe383813
1 changed files with 6 additions and 1 deletions
|
|
@ -1202,7 +1202,12 @@ MixerStrip::name_button_button_press (GdkEventButton* ev)
|
||||||
gboolean
|
gboolean
|
||||||
MixerStrip::number_button_button_press (GdkEventButton* ev)
|
MixerStrip::number_button_button_press (GdkEventButton* ev)
|
||||||
{
|
{
|
||||||
if ( ev->button == 3 ) {
|
if (ev->type == GDK_2BUTTON_PRESS) {
|
||||||
|
choose_color ();
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (ev->button == 3) {
|
||||||
list_route_operations ();
|
list_route_operations ();
|
||||||
|
|
||||||
route_ops_menu->popup (1, ev->time);
|
route_ops_menu->popup (1, ev->time);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue