summaryrefslogtreecommitdiff
path: root/gtk2_ardour/mixer_strip.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2010-05-06 18:40:37 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2010-05-06 18:40:37 +0000
commitf2ceb5c3404bb3e7f4ccc5bb3f2236f593775d73 (patch)
treeb8cc08678ab9b4e189a5cd97ae16f425fe8ab0b4 /gtk2_ardour/mixer_strip.cc
parente1ed9467dc9f9ffec7549958b1bca27b753e8742 (diff)
lots of odds and ends to do with solo isolate and its GUI
git-svn-id: svn://localhost/ardour2/branches/3.0@7072 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/mixer_strip.cc')
-rw-r--r--gtk2_ardour/mixer_strip.cc12
1 files changed, 6 insertions, 6 deletions
diff --git a/gtk2_ardour/mixer_strip.cc b/gtk2_ardour/mixer_strip.cc
index df9fc36084..ede93736e9 100644
--- a/gtk2_ardour/mixer_strip.cc
+++ b/gtk2_ardour/mixer_strip.cc
@@ -188,7 +188,7 @@ MixerStrip::init ()
solo_isolated_led = manage (new LED);
solo_isolated_led->show ();
- solo_isolated_led->set_diameter (5);
+ solo_isolated_led->set_diameter (6);
solo_isolated_led->set_no_show_all (true);
solo_isolated_led->set_name (X_("SoloIsolatedLED"));
solo_isolated_led->add_events (Gdk::BUTTON_PRESS_MASK|Gdk::BUTTON_RELEASE_MASK);
@@ -197,7 +197,7 @@ MixerStrip::init ()
solo_safe_led = manage (new LED);
solo_safe_led->show ();
- solo_safe_led->set_diameter (5);
+ solo_safe_led->set_diameter (6);
solo_safe_led->set_no_show_all (true);
solo_safe_led->set_name (X_("SoloSafeLED"));
solo_safe_led->add_events (Gdk::BUTTON_PRESS_MASK|Gdk::BUTTON_RELEASE_MASK);
@@ -215,10 +215,10 @@ MixerStrip::init ()
solo_led_table.set_spacings (0);
solo_led_table.set_border_width (1);
- solo_led_table.attach (*solo_isolated_led, 0, 1, 0, 1, Gtk::FILL, Gtk::FILL);
- solo_led_table.attach (*iso_label, 1, 2, 0, 1, Gtk::FILL, Gtk::FILL);
- solo_led_table.attach (*solo_safe_led, 0, 1, 1, 2, Gtk::FILL, Gtk::FILL);
- solo_led_table.attach (*safe_label, 1, 2, 1, 2, Gtk::FILL, Gtk::FILL);
+ solo_led_table.attach (*iso_label, 0, 1, 0, 1, Gtk::FILL, Gtk::FILL);
+ solo_led_table.attach (*solo_isolated_led, 1, 2, 0, 1, Gtk::FILL, Gtk::FILL);
+ solo_led_table.attach (*safe_label, 0, 1, 1, 2, Gtk::FILL, Gtk::FILL);
+ solo_led_table.attach (*solo_safe_led, 1, 2, 1, 2, Gtk::FILL, Gtk::FILL);
solo_led_table.show ();
solo_led_box.pack_end (solo_led_table, false, false);