summaryrefslogtreecommitdiff
path: root/gtk2_ardour/time_axis_view.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2014-12-14 16:15:38 -0500
committerPaul Davis <paul@linuxaudiosystems.com>2014-12-14 16:15:38 -0500
commit56ca52651e910496084b992486ac7b8e3bbc88cf (patch)
tree300ee5fb0518eaf0c46676ff1f19b7ef1947f22e /gtk2_ardour/time_axis_view.cc
parentf00fa04f10a5e343a5da27e0e83a5622cae61af9 (diff)
fix up requested color names everywhere.
Thank <deity> for emacs ... space-uncamelcase-word-at-point FTW
Diffstat (limited to 'gtk2_ardour/time_axis_view.cc')
-rw-r--r--gtk2_ardour/time_axis_view.cc26
1 files changed, 13 insertions, 13 deletions
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<SelectionRect*>::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<SelectionRect*>::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"));
}
}