This is an automated email from the ASF dual-hosted git repository.
mseidel pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/openoffice.git
The following commit(s) were added to refs/heads/trunk by this push:
new 437a4baa97 Change color for page preview highlight
437a4baa97 is described below
commit 437a4baa97d4e444dd690c4ca8508f7a372b6eeb
Author: mseidel <[email protected]>
AuthorDate: Fri Dec 8 18:23:00 2023 +0100
Change color for page preview highlight
---
main/sw/source/core/view/pagepreviewlayout.cxx | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/main/sw/source/core/view/pagepreviewlayout.cxx
b/main/sw/source/core/view/pagepreviewlayout.cxx
index 74a90b11c4..4d7864e2b7 100644
--- a/main/sw/source/core/view/pagepreviewlayout.cxx
+++ b/main/sw/source/core/view/pagepreviewlayout.cxx
@@ -19,8 +19,6 @@
*
*************************************************************/
-
-
// MARKER(update_precomp.py): autogen include statement, do not remove
#include "precompiled_sw.hxx"
#include <pagepreviewlayout.hxx>
@@ -1275,7 +1273,7 @@ void SwPagePreviewLayout::_PaintSelectMarkAtPage(
Color aLine( pOutputDev->GetLineColor() );
// determine selection mark color
- Color aSelPgLineColor(COL_LIGHTBLUE);
+ Color aSelPgLineColor(0, 120, 215);
const StyleSettings& rSettings =
mrParentViewShell.GetWin()->GetSettings().GetStyleSettings();
if ( rSettings.GetHighContrastMode() )
@@ -1538,3 +1536,5 @@ sal_uInt16
SwPagePreviewLayout::ConvertRelativeToAbsolutePageNum( sal_uInt16 _nR
return pRet->GetPhyPageNum();
}
+
+/* vim: set noet sw=4 ts=4: */