Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYouness Alaoui <kakaroto@kakaroto.homelinux.net>2015-09-03 22:40:54 +0300
committerYouness Alaoui <kakaroto@kakaroto.homelinux.net>2015-09-03 22:40:54 +0300
commit3ce43ee7fc455131c0d772708340443ea4f7c036 (patch)
tree6bafd4066765e7f99ac9e94f85ab040634af8210
parente4520a5ae9a9ef6f0f7623107b72e22d62370fb8 (diff)
Put checkboxes in the right parent widget
-rw-r--r--Cura/gui/simpleMode.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Cura/gui/simpleMode.py b/Cura/gui/simpleMode.py
index 5e1f825b4b..262067892e 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