summaryrefslogtreecommitdiff
path: root/gtk2_ardour/mixer_strip.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2011-10-27 11:53:16 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2011-10-27 11:53:16 +0000
commit5005ba060ec93b08cb9cc4beabcfc7a5f7ef2f84 (patch)
tree6b8d3159023ee69155230b1a5108f5d5321fe2c2 /gtk2_ardour/mixer_strip.cc
parent892f3c361e1b6d22da7f38194ec42182c185b14e (diff)
provide control over precisely what aspects of an ArdourButton are rendered, and other button-related miscellany
git-svn-id: svn://localhost/ardour2/branches/3.0@10315 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/mixer_strip.cc')
-rw-r--r--gtk2_ardour/mixer_strip.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk2_ardour/mixer_strip.cc b/gtk2_ardour/mixer_strip.cc
index 7866cef0d8..dffda5bed4 100644
--- a/gtk2_ardour/mixer_strip.cc
+++ b/gtk2_ardour/mixer_strip.cc
@@ -188,7 +188,7 @@ MixerStrip::init ()
monitor_input_button->set_diameter (3);
monitor_disk_button->set_diameter (3);
- solo_isolated_led = manage (new ArdourButton);
+ solo_isolated_led = manage (new ArdourButton (ArdourButton::led_default_elements));
solo_isolated_led->show ();
solo_isolated_led->set_diameter (3);
solo_isolated_led->set_no_show_all (true);
@@ -197,7 +197,7 @@ MixerStrip::init ()
solo_isolated_led->signal_button_release_event().connect (sigc::mem_fun (*this, &RouteUI::solo_isolate_button_release));
UI::instance()->set_tip (solo_isolated_led, _("Isolate Solo"), "");
- solo_safe_led = manage (new ArdourButton);
+ solo_safe_led = manage (new ArdourButton (ArdourButton::led_default_elements));
solo_safe_led->show ();
solo_safe_led->set_diameter (3);
solo_safe_led->set_no_show_all (true);