summaryrefslogtreecommitdiff
path: root/gtk2_ardour/stereo_panner.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2010-12-01 16:14:24 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2010-12-01 16:14:24 +0000
commit0006f4063ec83cd1d422836413eada2682eed81f (patch)
tree64ad2de2afa5247071ca8c5eaa3226a7e27e6d53 /gtk2_ardour/stereo_panner.cc
parent079057717d8a90ea362d34c728870cb16d775b86 (diff)
darken text color in stereo panner
git-svn-id: svn://localhost/ardour2/branches/3.0@8141 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/stereo_panner.cc')
-rw-r--r--gtk2_ardour/stereo_panner.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk2_ardour/stereo_panner.cc b/gtk2_ardour/stereo_panner.cc
index 60731c4639..162f06981a 100644
--- a/gtk2_ardour/stereo_panner.cc
+++ b/gtk2_ardour/stereo_panner.cc
@@ -137,7 +137,7 @@ StereoPanner::on_expose_event (GdkEventExpose* ev)
cairo_move_to (cr,
border + x2 - lr_box_size/2 + 4,
(lr_box_size/2) + step_down + 13);
- cairo_set_source_rgba (cr, 0.3137, 0.4431, 0.7843, 1.0);
+ cairo_set_source_rgba (cr, 0.129, 0.054, 0.588, 1.0);
cairo_select_font_face (cr, "sans-serif", CAIRO_FONT_SLANT_NORMAL, CAIRO_FONT_WEIGHT_BOLD);
cairo_show_text (cr, "L");
@@ -157,7 +157,7 @@ StereoPanner::on_expose_event (GdkEventExpose* ev)
cairo_move_to (cr,
border + x2 + (int) floor ((fabs (swidth * width))) - lr_box_size/2 + 4,
(lr_box_size/2)+step_down + 13);
- cairo_set_source_rgba (cr, 0.3137, 0.4431, 0.7843, 1.0);
+ cairo_set_source_rgba (cr, 0.129, 0.054, 0.588, 1.0);
cairo_show_text (cr, "R");
/* draw the central box */