[Libreoffice-commits] core.git: vcl/source
Alex McMurchy1917
mcmurchy1917-libreoffice at yahoo.co.uk
Wed Jun 13 07:46:49 UTC 2018
vcl/source/control/imp_listbox.cxx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit 3f31455fdd10309ab85fc3d324096698d3f38e5b
Author: Alex McMurchy1917 <mcmurchy1917-libreoffice at yahoo.co.uk>
Date: Tue Jun 12 08:09:49 2018 +0100
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 at libreoffice.org>
Reviewed-by: Thorsten Behrens <Thorsten.Behrens at CIB.de>
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 );
}
More information about the Libreoffice-commits
mailing list