diff options
-rw-r--r-- | vcl/source/window/status.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vcl/source/window/status.cxx b/vcl/source/window/status.cxx index 51c01c9ecd68..23c690a18e72 100644 --- a/vcl/source/window/status.cxx +++ b/vcl/source/window/status.cxx @@ -479,10 +479,10 @@ void StatusBar::ImplDrawItem( sal_Bool bOffScreen, sal_uInt16 nPos, sal_Bool bDr { // draw separator Point aFrom( aRect.TopLeft() ); - aFrom.X()--; + aFrom.X()-=4; aFrom.Y()++; Point aTo( aRect.BottomLeft() ); - aTo.X()--; + aTo.X()-=4; aTo.Y()--; DecorationView aDecoView( this ); |