summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex McMurchy1917 <mcmurchy1917-libreoffice@yahoo.co.uk>2018-06-12 08:09:49 +0100
committerCaolán McNamara <caolanm@redhat.com>2018-08-29 16:44:48 +0200
commitdb55d2a53af04a88ba070e619760f573e89e12fd (patch)
tree3fc7438509eb7b3833c733106fc0f6614169ebeb
parent4d40c1afd98cd30a0ab59da6cbd4a8dadb1027fa (diff)
tdf#109353 - Base: Listbox doesn't show a value.
This is because text in box is same colour as the background. This is only an issue for Linux/KDE. This change fixes this issue. Change-Id: Icb908ace25c69fd2fb51f8f44082ca6b00f55c43 Reviewed-on: https://gerrit.libreoffice.org/55660 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Thorsten Behrens <Thorsten.Behrens@CIB.de> (cherry picked from commit 3f31455fdd10309ab85fc3d324096698d3f38e5b) Reviewed-on: https://gerrit.libreoffice.org/59563 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
-rw-r--r--vcl/source/control/imp_listbox.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/source/control/imp_listbox.cxx b/vcl/source/control/imp_listbox.cxx
index f4100e13089d..32a82b1ac2cf 100644
--- a/vcl/source/control/imp_listbox.cxx
+++ b/vcl/source/control/imp_listbox.cxx
@@ -2693,7 +2693,7 @@ void ImplWin::ImplDraw(vcl::RenderContext& rRenderContext, bool bLayout)
if( bNativeOK && (nState & ControlState::ROLLOVER) )
aColor = rStyleSettings.GetFieldRolloverTextColor();
else
- aColor = rStyleSettings.GetHighlightTextColor();
+ aColor = rStyleSettings.GetFieldTextColor();
rRenderContext.SetTextColor( aColor );
rRenderContext.DrawRect( maFocusRect );
}