summaryrefslogtreecommitdiff
path: root/gtk2_ardour/mixer_strip.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2016-06-05 15:54:37 -0400
committerPaul Davis <paul@linuxaudiosystems.com>2016-06-05 16:33:01 -0400
commit2161c5d5070008bc0d42aa6022f357cb9e2d2296 (patch)
tree64b2030236dac84c425c7f0ad27e3e847d6e907a /gtk2_ardour/mixer_strip.cc
parent939bc07b4bf447dbe2262eeb207ef1174227ab22 (diff)
use new RouteGroup property names
Diffstat (limited to 'gtk2_ardour/mixer_strip.cc')
-rw-r--r--gtk2_ardour/mixer_strip.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/gtk2_ardour/mixer_strip.cc b/gtk2_ardour/mixer_strip.cc
index 6309596181..67e1d5f40f 100644
--- a/gtk2_ardour/mixer_strip.cc
+++ b/gtk2_ardour/mixer_strip.cc
@@ -1537,9 +1537,9 @@ MixerStrip::select_route_group (GdkEventButton *ev)
PropertyList* plist = new PropertyList();
- plist->add (Properties::gain, true);
- plist->add (Properties::mute, true);
- plist->add (Properties::solo, true);
+ plist->add (Properties::group_gain, true);
+ plist->add (Properties::group_mute, true);
+ plist->add (Properties::group_solo, true);
group_menu = new RouteGroupMenu (_session, plist);
}