summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2017-10-04 10:40:51 +0100
committerCaolán McNamara <caolanm@redhat.com>2017-10-04 14:19:44 +0200
commit863dc26196a200de1540bf2e7a4809c8882795ed (patch)
tree38d97aae34bf5573f738da9d0682522b5a264943
parent41b57affa0e6edfb77acccf10843260d43e26366 (diff)
don't add WB_CLIPCHILDREN to toplevel dialog builder creation
Change-Id: I402ebea3acf6ca7f4d61785944c933663b35e1f3 Reviewed-on: https://gerrit.libreoffice.org/43125 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
-rw-r--r--vcl/source/window/builder.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/source/window/builder.cxx b/vcl/source/window/builder.cxx
index 0ca4e710b75a..d2bdc7f94146 100644
--- a/vcl/source/window/builder.cxx
+++ b/vcl/source/window/builder.cxx
@@ -1178,7 +1178,7 @@ VclPtr<vcl::Window> VclBuilder::makeObject(vcl::Window *pParent, const OString &
VclPtr<vcl::Window> xWindow;
if (name == "GtkDialog")
{
- WinBits nBits = WB_CLIPCHILDREN|WB_MOVEABLE|WB_3DLOOK|WB_CLOSEABLE;
+ WinBits nBits = WB_MOVEABLE|WB_3DLOOK|WB_CLOSEABLE;
if (extractResizable(rMap))
nBits |= WB_SIZEABLE;
xWindow = VclPtr<Dialog>::Create(pParent, nBits);