diff options
author | Caolán McNamara <caolanm@redhat.com> | 2015-05-19 10:21:28 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2015-05-19 10:21:28 +0100 |
commit | 2e3f48746ea887c5503a87830b7d68b9eca2f3cc (patch) | |
tree | 9c4e134a620f94495b1a39c103f608e75a050719 /vcl/unx | |
parent | 9bc6cb2b405c879d6fc6d208f8deab0b295aed18 (diff) |
gtk3: presume we want the same no-op for LISTNET as gtk2
Change-Id: Ic05f49d4e7d379c1d66c911e1d63f13680d2e293
Diffstat (limited to 'vcl/unx')
-rw-r--r-- | vcl/unx/gtk3/gdi/gtk3salnativewidgets-gtk.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/vcl/unx/gtk3/gdi/gtk3salnativewidgets-gtk.cxx b/vcl/unx/gtk3/gdi/gtk3salnativewidgets-gtk.cxx index fbcf294e3ae1..be39e6f79d5a 100644 --- a/vcl/unx/gtk3/gdi/gtk3salnativewidgets-gtk.cxx +++ b/vcl/unx/gtk3/gdi/gtk3salnativewidgets-gtk.cxx @@ -947,6 +947,7 @@ bool GtkSalGraphics::drawNativeControl( ControlType nType, ControlPart nPart, co break; } break; + case CTRL_LISTNET: case CTRL_TAB_BODY: return true; break; @@ -1758,7 +1759,7 @@ bool GtkSalGraphics::IsNativeControlSupported( ControlType nType, ControlPart nP case CTRL_CHECKBOX: case CTRL_PROGRESS: // case CTRL_LISTNODE: -// case CTRL_LISTNET: + case CTRL_LISTNET: if (nPart==PART_ENTIRE_CONTROL || nPart == PART_FOCUS) return true; break; |