diff options
author | Caolán McNamara <caolanm@redhat.com> | 2015-05-12 21:06:48 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2015-05-13 10:00:22 +0100 |
commit | 7343e171256f16e86b3c43aca6412c738c89c3d4 (patch) | |
tree | 329587a9f52103cb9124ce0a76bd4c434e76d5d6 /vcl/source | |
parent | 5db6da7c5d27c5b8be59fb9a4599d5c95d7f1bd7 (diff) |
gtk3: stop painting the active listboxes blue
gtk3 equivalents are comboboxes without entries and
those don't do this
Change-Id: I71efe2c11a1d604e6c15927844f5a25b78771e62
Diffstat (limited to 'vcl/source')
-rw-r--r-- | vcl/source/control/ilstbox.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/source/control/ilstbox.cxx b/vcl/source/control/ilstbox.cxx index bd1935cf0577..0961df128e83 100644 --- a/vcl/source/control/ilstbox.cxx +++ b/vcl/source/control/ilstbox.cxx @@ -2716,7 +2716,7 @@ void ImplWin::ImplDraw( bool bLayout ) if( IsEnabled() ) { - if( HasFocus() ) + if (HasFocus() && !ImplGetSVData()->maNWFData.mbDDListBoxNoTextArea) { SetTextColor( rStyleSettings.GetHighlightTextColor() ); SetFillColor( rStyleSettings.GetHighlightColor() ); |