diff options
author | Caolán McNamara <caolan.mcnamara@collabora.com> | 2024-07-16 20:12:04 +0100 |
---|---|---|
committer | Caolán McNamara <caolan.mcnamara@collabora.com> | 2024-07-17 09:23:08 +0200 |
commit | ddcc9515bc4313b580fad6474b603266ef2b9c15 (patch) | |
tree | d3660a7244fe5941ec16851e4fe2d948286950b5 /cui | |
parent | bee938aaa2d7aab824496ad2fcebe6620c00beb7 (diff) |
Resolves: tdf#161989 unset gtk emphasis defaults to light
Change-Id: Id347671ed7f9b1b36c29578566c4a82e9181aeb7
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/170594
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolan.mcnamara@collabora.com>
Diffstat (limited to 'cui')
-rw-r--r-- | cui/source/options/optaboutconfig.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/cui/source/options/optaboutconfig.cxx b/cui/source/options/optaboutconfig.cxx index d7eeed7f3a56..1dd1874c820e 100644 --- a/cui/source/options/optaboutconfig.cxx +++ b/cui/source/options/optaboutconfig.cxx @@ -424,6 +424,7 @@ void CuiAboutConfigTabPage::FillItems(const Reference<XNameAccess>& xNameAccess, m_xPrefBox->set_text(*m_xScratchIter, u""_ustr, 1); m_xPrefBox->set_text(*m_xScratchIter, u""_ustr, 2); m_xPrefBox->set_text(*m_xScratchIter, u""_ustr, 3); + m_xPrefBox->set_text_emphasis(*m_xScratchIter, false, -1); m_xPrefBox->set_sensitive(*m_xScratchIter, true); } } @@ -1076,6 +1077,7 @@ void CuiAboutConfigTabPage::InsertEntry(const prefBoxEntry& rEntry) m_xPrefBox->set_text(*xParentEntry, u""_ustr, 1); m_xPrefBox->set_text(*xParentEntry, u""_ustr, 2); m_xPrefBox->set_text(*xParentEntry, u""_ustr, 3); + m_xPrefBox->set_text_emphasis(*xParentEntry, false, -1); m_xPrefBox->set_sensitive(*xParentEntry, true); } |