From f6d5566154ba34fe3e706173aaba01e175bd464f Mon Sep 17 00:00:00 2001 From: Youness Alaoui Date: Mon, 3 Aug 2015 16:58:47 -0400 Subject: [PATCH] Layout the main window after reloading settings panel This caused the expert settings panel to become blank when we reload either by adding/canceling a new machine, or changing selected machine. Fixes T172 --- Cura/gui/mainWindow.py | 1 + 1 file changed, 1 insertion(+) diff --git a/Cura/gui/mainWindow.py b/Cura/gui/mainWindow.py index 38768ce1..d96f8eb7 100644 --- a/Cura/gui/mainWindow.py +++ b/Cura/gui/mainWindow.py @@ -488,6 +488,7 @@ class mainWindow(wx.Frame): self.leftSizer.Add(self.normalSettingsPanel, 1, wx.EXPAND) self.updateSliceMode(changedSliceMode) self.updateProfileToAllControls() + self.Layout() def updateMachineMenu(self): #Remove all items so we can rebuild the menu. Inserting items seems to cause crashes, so this is the safest way. -- 2.30.2