summaryrefslogtreecommitdiff
path: root/gtk2_ardour/region_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/region_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/region_view.cc')
-rw-r--r--gtk2_ardour/region_view.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/gtk2_ardour/region_view.cc b/gtk2_ardour/region_view.cc
index d418833471..11d75a161e 100644
--- a/gtk2_ardour/region_view.cc
+++ b/gtk2_ardour/region_view.cc
@@ -235,7 +235,7 @@ RegionView::set_silent_frames (const AudioIntervalResult& silences, double /*thr
return;
}
- uint32_t const color = ARDOUR_UI::config()->color ("Silence");
+ uint32_t const color = ARDOUR_UI::config()->color ("silence");
for (AudioIntervalResult::const_iterator i = silences.begin(); i != silences.end(); ++i) {
@@ -276,7 +276,7 @@ RegionView::set_silent_frames (const AudioIntervalResult& silences, double /*thr
_silence_text = new ArdourCanvas::Text (group);
_silence_text->set_ignore_events (true);
_silence_text->set_font_description (get_font_for_style (N_("SilenceText")));
- _silence_text->set_color (ARDOUR_UI::config()->color ("SilenceText"));
+ _silence_text->set_color (ARDOUR_UI::config()->color ("silence text"));
/* both positions are relative to the region start offset in source */
@@ -783,7 +783,7 @@ RegionView::update_coverage_frames (LayerDisplay d)
bool me = false;
/* the color that will be used to show parts of regions that will not be heard */
- uint32_t const non_playing_color = ARDOUR_UI::config()->color ("CoveredRegion");
+ uint32_t const non_playing_color = ARDOUR_UI::config()->color ("covered region");
while (t < end) {