summaryrefslogtreecommitdiff
path: root/svx
diff options
context:
space:
mode:
authorHeiko Tietze <tietze.heiko@gmail.com>2020-11-11 11:25:40 +0100
committerCaolán McNamara <caolanm@redhat.com>2020-12-10 10:42:28 +0100
commitf527846ab9a67387909d225aaeb77301d2b48d5a (patch)
tree1504da1e581260f591ff35bc7dce26d65ec03daf /svx
parentda71f806ad09ace88c509a9af7346f0e3f29b744 (diff)
Resolves tdf#138127 - Use document color for border widget
Change-Id: I57fdbd37c23f3bd2c20ac04ef598cd8a182aac6b Reviewed-on: https://gerrit.libreoffice.org/c/core/+/105577 Tested-by: Jenkins Reviewed-by: Heiko Tietze <heiko.tietze@documentfoundation.org> (cherry picked from commit 6f7d1aaa8c375e6b7a9b80d1ae57efc176c6430f) Reviewed-on: https://gerrit.libreoffice.org/c/core/+/107388 Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'svx')
-rw-r--r--svx/source/dialog/frmsel.cxx10
1 files changed, 6 insertions, 4 deletions
diff --git a/svx/source/dialog/frmsel.cxx b/svx/source/dialog/frmsel.cxx
index 78b4f77025fe..8854f7d8272c 100644
--- a/svx/source/dialog/frmsel.cxx
+++ b/svx/source/dialog/frmsel.cxx
@@ -24,6 +24,7 @@
#include <vcl/event.hxx>
#include <sal/log.hxx>
#include <tools/debug.hxx>
+#include <svtools/colorcfg.hxx>
#include <algorithm>
#include <math.h>
@@ -297,11 +298,12 @@ void FrameSelectorImpl::Initialize( FrameSelFlags nFlags )
void FrameSelectorImpl::InitColors()
{
const StyleSettings& rSettings = Application::GetSettings().GetStyleSettings();
- maBackCol = rSettings.GetFieldColor();
+ svtools::ColorConfig aColorConfig;
+ maBackCol = aColorConfig.GetColorValue(svtools::DOCCOLOR).nColor;
mbHCMode = rSettings.GetHighContrastMode();
- maArrowCol = rSettings.GetFieldTextColor();
- maMarkCol.operator=(maBackCol).Merge(maArrowCol, mbHCMode ? 0x80 : 0xC0);
- maHCLineCol = rSettings.GetLabelTextColor();
+ maArrowCol = aColorConfig.GetColorValue(svtools::DOCBOUNDARIES).nColor;
+ maMarkCol = aColorConfig.GetColorValue(svtools::TABLEBOUNDARIES).nColor;
+ maHCLineCol = COL_BLACK;
}
const std::u16string_view aImageIds[] =