Blame SOURCES/0001-gtk3-wayland-dialogs-work-a-lot-better-if-a-min-size.patch

f325b2
From f4ac9a55997efbe9c71b7f87ef138e378d95583c Mon Sep 17 00:00:00 2001
f325b2
From: =?UTF-8?q?Caol=C3=A1n=20McNamara?= <caolanm@redhat.com>
f325b2
Date: Tue, 8 Dec 2015 15:10:45 +0000
f325b2
Subject: [PATCH] gtk3+wayland: dialogs work a lot better if a min size is set
f325b2
f325b2
instead of just an initial size, because we can set a size-request for the
f325b2
minimum size and that's a reliable thing
f325b2
f325b2
Change-Id: I83916715cb9e3dceb6e88f3ca8fc86920677c026
f325b2
(cherry picked from commit ebafc4fef20944c9c0ba75fbea064bf285a73735)
f325b2
---
f325b2
 vcl/source/window/btndlg.cxx | 3 ++-
f325b2
 1 file changed, 2 insertions(+), 1 deletion(-)
f325b2
f325b2
diff --git a/vcl/source/window/btndlg.cxx b/vcl/source/window/btndlg.cxx
f325b2
index bb0f0a3..16a695f 100644
f325b2
--- a/vcl/source/window/btndlg.cxx
f325b2
+++ b/vcl/source/window/btndlg.cxx
f325b2
@@ -208,7 +208,8 @@ void ButtonDialog::ImplPosControls()
f325b2
             nY += maCtrlSize.Height()+IMPL_SEP_BUTTON_Y;
f325b2
     }
f325b2
 
f325b2
-    SetOutputSizePixel( aDlgSize );
f325b2
+    SetOutputSizePixel(aDlgSize);
f325b2
+    SetMinOutputSizePixel(aDlgSize);
f325b2
 
f325b2
     mbFormat = false;
f325b2
 }
f325b2
-- 
f325b2
2.5.0
f325b2