amend 7be3c88a, update rec-en color

This commit is contained in:
Robin Gareus 2014-08-29 19:55:25 +02:00
parent 7be3c88a3e
commit d6454dfb36
3 changed files with 4 additions and 4 deletions

View File

@ -355,7 +355,7 @@ void
MeterStrip::set_button_names()
{
mute_button->set_text (_("M"));
rec_enable_button->set_markup ("<span color=\"#cc0000\">\u25CF</span>");
rec_enable_button->set_markup ("<span color=\"#f46f6f\">\u25CF</span>");
if (_route && _route->solo_safe()) {
solo_button->set_visual_state (Gtkmm2ext::VisualState (solo_button->visual_state() | Gtkmm2ext::Insensitive));

View File

@ -172,7 +172,7 @@ RouteTimeAxisView::set_route (boost::shared_ptr<Route> rt)
case ARDOUR::Normal:
case ARDOUR::NonLayered:
rec_enable_button->set_image (Glib::RefPtr<Gdk::Pixbuf>());
rec_enable_button->set_markup ("<span color=\"#cc0000\">\u25CF</span>");
rec_enable_button->set_markup ("<span color=\"#f46f6f\">\u25CF</span>");
break;
case ARDOUR::Destructive:
rec_enable_button->set_text (string());
@ -806,7 +806,7 @@ RouteTimeAxisView::set_track_mode (TrackMode mode, bool apply_to_selection)
case ARDOUR::NonLayered:
case ARDOUR::Normal:
rec_enable_button->set_image (Glib::RefPtr<Gdk::Pixbuf>());
rec_enable_button->set_markup ("<span color=\"#cc0000\">\u25CF</span>");
rec_enable_button->set_markup ("<span color=\"#f46f6f\">\u25CF</span>");
break;
case ARDOUR::Destructive:
rec_enable_button->set_text (string());

View File

@ -144,7 +144,7 @@ RouteUI::init ()
rec_enable_button = manage (new ArdourButton);
rec_enable_button->set_name ("record enable button");
rec_enable_button->set_markup ("<span weight=\"bold\" color=\"#cc0000\">\u2B24</span>");
rec_enable_button->set_markup ("<span weight=\"bold\" color=\"#f46f6f\">\u2B24</span>");
UI::instance()->set_tip (rec_enable_button, _("Enable recording on this track"), "");
rec_blink_connection = ARDOUR_UI::instance()->Blink.connect (sigc::mem_fun (*this, &RouteUI::blink_rec_display));