summaryrefslogtreecommitdiff
path: root/gtk2_ardour/shuttle_control.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/shuttle_control.cc
parentf00fa04f10a5e343a5da27e0e83a5622cae61af9 (diff)
fix up requested color names everywhere.
Thank <deity> for emacs ... space-uncamelcase-word-at-point FTW
Diffstat (limited to 'gtk2_ardour/shuttle_control.cc')
-rw-r--r--gtk2_ardour/shuttle_control.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk2_ardour/shuttle_control.cc b/gtk2_ardour/shuttle_control.cc
index 23e2b4e8da..d91ba0a12a 100644
--- a/gtk2_ardour/shuttle_control.cc
+++ b/gtk2_ardour/shuttle_control.cc
@@ -113,7 +113,7 @@ ShuttleControl::on_size_allocate (Gtk::Allocation& alloc)
//background
pattern = cairo_pattern_create_linear (0, 0, 0, alloc.get_height());
- uint32_t col = ARDOUR_UI::config()->color ("Shuttle");
+ uint32_t col = ARDOUR_UI::config()->color ("shuttle");
int r,b,g,a;
UINT_TO_RGBA(col, &r, &g, &b, &a);
cairo_pattern_add_color_stop_rgb (pattern, 0.0, r/400.0, g/400.0, b/400.0);