[Libreoffice-commits] core.git: vcl/unx
Caolán McNamara (via logerrit)
logerrit at kemper.freedesktop.org
Wed Feb 26 15:43:10 UTC 2020
vcl/unx/gtk3/gtk3gtkinst.cxx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit 2cf5fa87c405e5665ad14951b52c7cae38ab79fc
Author: Caolán McNamara <caolanm at redhat.com>
AuthorDate: Wed Feb 26 14:19:45 2020 +0000
Commit: Caolán McNamara <caolanm at redhat.com>
CommitDate: Wed Feb 26 16:42:36 2020 +0100
tdf#130845 sidebar widget visible when sidebar collapsed
default to "false" and track the parent widget clipping/visibility
instead of "true" which makes it unconditionally visible
Change-Id: I1f8cec2b07ac20c33ff09cc278424d7e20199946
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/89552
Tested-by: Caolán McNamara <caolanm at redhat.com>
Reviewed-by: Caolán McNamara <caolanm at redhat.com>
diff --git a/vcl/unx/gtk3/gtk3gtkinst.cxx b/vcl/unx/gtk3/gtk3gtkinst.cxx
index ad19e1d762f0..f1d28a270e15 100644
--- a/vcl/unx/gtk3/gtk3gtkinst.cxx
+++ b/vcl/unx/gtk3/gtk3gtkinst.cxx
@@ -13975,7 +13975,7 @@ weld::Builder* GtkInstance::CreateInterimBuilder(vcl::Window* pParent, const OUS
// support GtkWidgets within a vcl::Window
SystemWindowData winData = {};
winData.bClipUsingNativeWidget = true;
- auto xEmbedWindow = VclPtr<SystemChildWindow>::Create(pParent, 0, &winData, true);
+ auto xEmbedWindow = VclPtr<SystemChildWindow>::Create(pParent, 0, &winData, false);
xEmbedWindow->Show();
xEmbedWindow->set_expand(true);
More information about the Libreoffice-commits
mailing list