From cc1a5ac94c06b82ed820899b4cff37e99e9ff51f Mon Sep 17 00:00:00 2001 From: Youness Alaoui Date: Thu, 30 Jul 2015 17:03:26 -0400 Subject: [PATCH] Fix quickprint panel not resizing itself when new options require more space --- Cura/gui/simpleMode.py | 1 + 1 file changed, 1 insertion(+) diff --git a/Cura/gui/simpleMode.py b/Cura/gui/simpleMode.py index cced2675..9b35a7b9 100644 --- a/Cura/gui/simpleMode.py +++ b/Cura/gui/simpleMode.py @@ -164,6 +164,7 @@ class simpleModePanel(wx.Panel): boxsizer.Add(button) button.Bind(wx.EVT_CHECKBOX, self._update) self.Layout() + self.GetParent().Fit() # Do not call the callback on the initial UI build if e is not None: -- 2.30.2