diff options
author | Caolán McNamara <caolanm@redhat.com> | 2018-12-19 09:52:43 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2018-12-19 13:21:26 +0100 |
commit | cc4352ccdd5dcdf055a67accc6e74b3ee81ec28c (patch) | |
tree | d806f8727193b392ad77a31548cb24b3f19f8ff2 /cui | |
parent | b30b82b72317919af839ce55afa492ffc7405043 (diff) |
set explicit color for font feature preview bg
Change-Id: Ia7e8e6e6d7b8297063798aaf63111490f356c5c9
Reviewed-on: https://gerrit.libreoffice.org/65411
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'cui')
-rw-r--r-- | cui/source/dialogs/FontFeaturesDialog.cxx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/cui/source/dialogs/FontFeaturesDialog.cxx b/cui/source/dialogs/FontFeaturesDialog.cxx index 6340c0c8c9e2..5e5d793228e9 100644 --- a/cui/source/dialogs/FontFeaturesDialog.cxx +++ b/cui/source/dialogs/FontFeaturesDialog.cxx @@ -10,6 +10,7 @@ #include <FontFeaturesDialog.hxx> #include <vcl/font/FeatureParser.hxx> +#include <svtools/colorcfg.hxx> #include <svx/dialmgr.hxx> #include <unordered_set> @@ -24,6 +25,9 @@ FontFeaturesDialog::FontFeaturesDialog(weld::Window* pParent, OUString const& rF , m_xContentGrid(m_xBuilder->weld_container("contentGrid")) , m_xPreviewWindow(new weld::CustomWeld(*m_xBuilder, "preview", m_aPreviewWindow)) { + svtools::ColorConfig aColorConfig; + Color aFillColor(aColorConfig.GetColorValue(svtools::DOCCOLOR).nColor); + m_aPreviewWindow.SetBackColor(aFillColor); initialize(); } |