From 3ce43ee7fc455131c0d772708340443ea4f7c036 Mon Sep 17 00:00:00 2001 From: Youness Alaoui Date: Thu, 3 Sep 2015 15:40:54 -0400 Subject: [PATCH] Put checkboxes in the right parent widget --- Cura/gui/simpleMode.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cura/gui/simpleMode.py b/Cura/gui/simpleMode.py index 5e1f825b..26206789 100644 --- a/Cura/gui/simpleMode.py +++ b/Cura/gui/simpleMode.py @@ -303,7 +303,7 @@ class simpleModePanel(wx.Panel): for option in material.options: if option.disabled: continue - button = wx.CheckBox(self, -1, option.name.replace('&', '&&')) + button = wx.CheckBox(self.printOptionsBox, -1, option.name.replace('&', '&&')) button.profile = option self._print_other_options.append(button) # Restore selection on similarly named options -- 2.30.2