diff options
author | Cédric Bosdonnat <cedric.bosdonnat@free.fr> | 2011-10-12 00:24:17 +0200 |
---|---|---|
committer | Cédric Bosdonnat <cedric.bosdonnat@free.fr> | 2011-10-12 02:04:57 +0200 |
commit | 01e704121ace2d9c732fbf0fad0ef69cd3c39378 (patch) | |
tree | 41fc22f6815bd5eb216649bdb3a2de887a6e8cda /sw | |
parent | 8398373c622d0f1c9088e0193b99474b5d4284a5 (diff) |
Page Break: Make the line control thicker to ease fade in/out
Diffstat (limited to 'sw')
-rw-r--r-- | sw/source/ui/docvw/PageBreakWin.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sw/source/ui/docvw/PageBreakWin.cxx b/sw/source/ui/docvw/PageBreakWin.cxx index ebcd2150baee..8e871e279a97 100644 --- a/sw/source/ui/docvw/PageBreakWin.cxx +++ b/sw/source/ui/docvw/PageBreakWin.cxx @@ -455,8 +455,8 @@ void SwPageBreakWin::UpdatePosition( ) SetPosSizePixel( aBtnPos, aBtnSize ); // Set the line position - Point aLinePos( nLineLeft, nYLineOffset ); - Size aLineSize( nLineRight - nLineLeft, 5 ); + Point aLinePos( nLineLeft, nYLineOffset - 5 ); + Size aLineSize( nLineRight - nLineLeft, 10 ); m_pLine->SetPosSizePixel( aLinePos, aLineSize ); } |