summaryrefslogtreecommitdiff
path: root/gtk2_ardour/time_axis_view.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2014-12-15 10:46:15 -0500
committerPaul Davis <paul@linuxaudiosystems.com>2014-12-15 10:46:15 -0500
commit2145fd2973528b7f2b8b4c3cd090fcff23ff6722 (patch)
tree0db78c1abba9f25bcfd429523b030613ac2bf828 /gtk2_ardour/time_axis_view.cc
parenteac478495ec0084ba143d309e2e995ef4d5d98ab (diff)
next 2 modifiers
Diffstat (limited to 'gtk2_ardour/time_axis_view.cc')
-rw-r--r--gtk2_ardour/time_axis_view.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/gtk2_ardour/time_axis_view.cc b/gtk2_ardour/time_axis_view.cc
index 8f4f6f76ca..7130f9de68 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 ("selection rect"));
+ rect->rect->set_fill_color (ARDOUR_UI::config()->color_mod ("selection rect", "selection rect"));
rect->start_trim = new ArdourCanvas::Rectangle (selection_group);
CANVAS_DEBUG_NAME (rect->start_trim, "selection rect start trim");
@@ -1190,7 +1190,7 @@ 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 ("selection rect"));
+ (*i)->rect->set_fill_color (ARDOUR_UI::config()->color_mod ("selection rect", "selection rect"));
(*i)->rect->set_outline_color (ARDOUR_UI::config()->color ("selection"));
(*i)->start_trim->set_fill_color (ARDOUR_UI::config()->color ("selection"));
@@ -1202,7 +1202,7 @@ TimeAxisView::color_handler ()
for (list<SelectionRect*>::iterator i = free_selection_rects.begin(); i != free_selection_rects.end(); ++i) {
- (*i)->rect->set_fill_color (ARDOUR_UI::config()->color ("selection rect"));
+ (*i)->rect->set_fill_color (ARDOUR_UI::config()->color_mod ("selection rect", "selection rect"));
(*i)->rect->set_outline_color (ARDOUR_UI::config()->color ("selection"));
(*i)->start_trim->set_fill_color (ARDOUR_UI::config()->color ("selection"));