X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=gtk2_ardour%2Fmixer_strip.cc;h=bbef4ffbf61db9b92694e85f69f8a3e412c23cbf;hb=dab0dacc66dcc190b4408ba75e3807973582cbd6;hp=df9fc36084b0fe1726d9d12382aa5921ccc757f5;hpb=c52a0d1efc8cc6c506f9f224df980a2416818552;p=ardour.git diff --git a/gtk2_ardour/mixer_strip.cc b/gtk2_ardour/mixer_strip.cc index df9fc36084..bbef4ffbf6 100644 --- a/gtk2_ardour/mixer_strip.cc +++ b/gtk2_ardour/mixer_strip.cc @@ -28,7 +28,6 @@ #include #include #include -#include #include #include #include @@ -188,7 +187,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 +196,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 +214,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); @@ -1422,8 +1421,8 @@ MixerStrip::build_route_ops_menu () MenuList& items = route_ops_menu->items(); - items.push_back (MenuElem (_("Save As Template"), sigc::mem_fun(*this, &RouteUI::save_as_template))); - items.push_back (MenuElem (_("Rename"), sigc::mem_fun(*this, &RouteUI::route_rename))); + items.push_back (MenuElem (_("Save As Template..."), sigc::mem_fun(*this, &RouteUI::save_as_template))); + items.push_back (MenuElem (_("Rename..."), sigc::mem_fun(*this, &RouteUI::route_rename))); rename_menu_item = &items.back(); items.push_back (SeparatorElem()); items.push_back (CheckMenuElem (_("Active"), sigc::mem_fun (*this, &RouteUI::toggle_route_active))); @@ -1432,10 +1431,10 @@ MixerStrip::build_route_ops_menu () items.push_back (SeparatorElem()); - items.push_back (MenuElem (_("Adjust latency"), sigc::mem_fun (*this, &RouteUI::adjust_latency))); + items.push_back (MenuElem (_("Adjust Latency..."), sigc::mem_fun (*this, &RouteUI::adjust_latency))); items.push_back (SeparatorElem()); - items.push_back (CheckMenuElem (_("Protect against denormals"), sigc::mem_fun (*this, &RouteUI::toggle_denormal_protection))); + items.push_back (CheckMenuElem (_("Protect Against Denormals"), sigc::mem_fun (*this, &RouteUI::toggle_denormal_protection))); denormal_menu_item = dynamic_cast (&items.back()); denormal_menu_item->set_active (_route->denormal_protection());