summaryrefslogtreecommitdiff
path: root/vcl/win
diff options
context:
space:
mode:
authorJan Holesovsky <kendy@collabora.com>2014-12-03 10:44:02 +0100
committerJan Holesovsky <kendy@collabora.com>2014-12-03 11:52:21 +0100
commitdacbe43846a729ef9f46138321c1facb5151c17d (patch)
tree031129740858c4d3512e05b4f135dbafdf0442dd /vcl/win
parentf8533123802c5a709280dd06b4452d00a11c71b1 (diff)
Make the default (non-native) workspace lighter, especially on Windows.
Change-Id: Ie1cc5817a5b75f129791da450105ffee07438900
Diffstat (limited to 'vcl/win')
-rw-r--r--vcl/win/source/gdi/salnativewidgets-luna.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/vcl/win/source/gdi/salnativewidgets-luna.cxx b/vcl/win/source/gdi/salnativewidgets-luna.cxx
index 539af04a9870..401e0678d8d3 100644
--- a/vcl/win/source/gdi/salnativewidgets-luna.cxx
+++ b/vcl/win/source/gdi/salnativewidgets-luna.cxx
@@ -474,7 +474,7 @@ static void impl_drawAeroToolbar( HDC hDC, RECT rc, bool bHorizontal )
GradientFill( hDC, vert, 2, g_rect, 1, GRADIENT_FILL_RECT_V );
// and a darker horizontal line under that
- HPEN hpen = CreatePen( PS_SOLID, 1, RGB( 0xa0, 0xa0, 0xa0 ) );
+ HPEN hpen = CreatePen( PS_SOLID, 1, RGB( 0xb0, 0xb0, 0xb0 ) );
SelectObject( hDC, hpen );
MoveToEx( hDC, rc.left, gradient_bottom, NULL );
@@ -499,7 +499,7 @@ static void impl_drawAeroToolbar( HDC hDC, RECT rc, bool bHorizontal )
to_x = rc.right;
from_y = to_y = rc.top;
- HPEN hpen = CreatePen( PS_SOLID, 1, RGB( 0xa0, 0xa0, 0xa0 ) );
+ HPEN hpen = CreatePen( PS_SOLID, 1, RGB( 0xb0, 0xb0, 0xb0 ) );
SelectObject( hDC, hpen );
MoveToEx( hDC, from_x, from_y, NULL );