From 56ca52651e910496084b992486ac7b8e3bbc88cf Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Sun, 14 Dec 2014 16:15:38 -0500 Subject: fix up requested color names everywhere. Thank for emacs ... space-uncamelcase-word-at-point FTW --- gtk2_ardour/time_axis_view.cc | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) (limited to 'gtk2_ardour/time_axis_view.cc') diff --git a/gtk2_ardour/time_axis_view.cc b/gtk2_ardour/time_axis_view.cc index 7ee57b3bb7..8f4f6f76ca 100644 --- a/gtk2_ardour/time_axis_view.cc +++ b/gtk2_ardour/time_axis_view.cc @@ -1025,7 +1025,7 @@ TimeAxisView::get_selection_rect (uint32_t id) rect->rect = new ArdourCanvas::TimeRectangle (selection_group); CANVAS_DEBUG_NAME (rect->rect, "selection rect"); rect->rect->set_outline (false); - rect->rect->set_fill_color (ARDOUR_UI::config()->color ("SelectionRect")); + rect->rect->set_fill_color (ARDOUR_UI::config()->color ("selection rect")); rect->start_trim = new ArdourCanvas::Rectangle (selection_group); CANVAS_DEBUG_NAME (rect->start_trim, "selection rect start trim"); @@ -1190,26 +1190,26 @@ TimeAxisView::color_handler () for (list::iterator i = used_selection_rects.begin(); i != used_selection_rects.end(); ++i) { - (*i)->rect->set_fill_color (ARDOUR_UI::config()->color ("SelectionRect")); - (*i)->rect->set_outline_color (ARDOUR_UI::config()->color ("Selection")); + (*i)->rect->set_fill_color (ARDOUR_UI::config()->color ("selection rect")); + (*i)->rect->set_outline_color (ARDOUR_UI::config()->color ("selection")); - (*i)->start_trim->set_fill_color (ARDOUR_UI::config()->color ("Selection")); - (*i)->start_trim->set_outline_color (ARDOUR_UI::config()->color ("Selection")); + (*i)->start_trim->set_fill_color (ARDOUR_UI::config()->color ("selection")); + (*i)->start_trim->set_outline_color (ARDOUR_UI::config()->color ("selection")); - (*i)->end_trim->set_fill_color (ARDOUR_UI::config()->color ("Selection")); - (*i)->end_trim->set_outline_color (ARDOUR_UI::config()->color ("Selection")); + (*i)->end_trim->set_fill_color (ARDOUR_UI::config()->color ("selection")); + (*i)->end_trim->set_outline_color (ARDOUR_UI::config()->color ("selection")); } for (list::iterator i = free_selection_rects.begin(); i != free_selection_rects.end(); ++i) { - (*i)->rect->set_fill_color (ARDOUR_UI::config()->color ("SelectionRect")); - (*i)->rect->set_outline_color (ARDOUR_UI::config()->color ("Selection")); + (*i)->rect->set_fill_color (ARDOUR_UI::config()->color ("selection rect")); + (*i)->rect->set_outline_color (ARDOUR_UI::config()->color ("selection")); - (*i)->start_trim->set_fill_color (ARDOUR_UI::config()->color ("Selection")); - (*i)->start_trim->set_outline_color (ARDOUR_UI::config()->color ("Selection")); + (*i)->start_trim->set_fill_color (ARDOUR_UI::config()->color ("selection")); + (*i)->start_trim->set_outline_color (ARDOUR_UI::config()->color ("selection")); - (*i)->end_trim->set_fill_color (ARDOUR_UI::config()->color ("Selection")); - (*i)->end_trim->set_outline_color (ARDOUR_UI::config()->color ("Selection")); + (*i)->end_trim->set_fill_color (ARDOUR_UI::config()->color ("selection")); + (*i)->end_trim->set_outline_color (ARDOUR_UI::config()->color ("selection")); } } -- cgit v1.2.3