[Libreoffice-commits] core.git: vcl/source
Andras Timar
andras.timar at collabora.com
Wed Jun 24 03:42:25 PDT 2015
vcl/source/window/builder.cxx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit 5427d69fa05dd118eb2160999cf6f2a6a6097886
Author: Andras Timar <andras.timar at collabora.com>
Date: Wed Jun 24 02:16:00 2015 -0700
tdf#91380 add WB_MOVEABLE bit to docking windows
Change-Id: Iab913747180bf1588da2d703069650e3e6916414
Reviewed-on: https://gerrit.libreoffice.org/16444
Tested-by: Jenkins <ci at libreoffice.org>
Reviewed-by: Caolán McNamara <caolanm at redhat.com>
Tested-by: Caolán McNamara <caolanm at redhat.com>
diff --git a/vcl/source/window/builder.cxx b/vcl/source/window/builder.cxx
index 51bab75..40d4614 100644
--- a/vcl/source/window/builder.cxx
+++ b/vcl/source/window/builder.cxx
@@ -1045,7 +1045,7 @@ namespace
else if (sType == "popup-menu")
nBits |= WB_SYSTEMWINDOW | WB_DIALOGCONTROL | WB_POPUP;
else if (sType == "dock")
- nBits |= WB_DOCKABLE;
+ nBits |= WB_DOCKABLE | WB_MOVEABLE;
else
nBits |= WB_MOVEABLE;
return nBits;
More information about the Libreoffice-commits
mailing list