From ab656800a067b9ebbe7f200ade0e5a5006da1cda Mon Sep 17 00:00:00 2001 From: Lex Neva Date: Mon, 27 Aug 2018 16:15:58 -0400 Subject: [PATCH] fix windows issue --- lib/simulator.py | 7 +++++-- messages.po | 8 ++++---- 2 files changed, 9 insertions(+), 6 deletions(-) diff --git a/lib/simulator.py b/lib/simulator.py index 5b497cd8b..0b805acf4 100644 --- a/lib/simulator.py +++ b/lib/simulator.py @@ -50,10 +50,10 @@ class ControlPanel(wx.Panel): self.restartBtn.Bind(wx.EVT_BUTTON, self.animation_restart) self.quitBtn = wx.Button(self, -1, label=_('Quit')) self.quitBtn.Bind(wx.EVT_BUTTON, self.animation_quit) - self.slider = wx.Slider(self, -1, value=1, minValue=1, maxValue=self.num_stitches, + self.slider = wx.Slider(self, -1, value=1, minValue=1, maxValue=2, style=wx.SL_HORIZONTAL | wx.SL_LABELS) self.slider.Bind(wx.EVT_SLIDER, self.on_slider) - self.stitchBox = IntCtrl(self, -1, value=1, min=1, max=self.num_stitches, limited=True, allow_none=False) + self.stitchBox = IntCtrl(self, -1, value=1, min=1, max=2, limited=True, allow_none=False) self.stitchBox.Bind(wx.EVT_TEXT, self.on_stitch_box) self.speedST = wx.StaticText(self, -1, label='', style=wx.ALIGN_CENTER) self.commandST = wx.StaticText(self, -1, label='', style=wx.ALIGN_CENTER) @@ -121,6 +121,9 @@ class ControlPanel(wx.Panel): self.drawing_panel.set_speed(self.speed) def set_num_stitches(self, num_stitches): + if num_stitches < 2: + # otherwise the slider and intctrl get mad + num_stitches = 2 self.num_stitches = num_stitches self.stitchBox.SetMax(num_stitches) self.slider.SetMax(num_stitches) diff --git a/messages.po b/messages.po index b21083d55..15718012f 100644 --- a/messages.po +++ b/messages.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-08-27 15:53-0400\n" +"POT-Creation-Date: 2018-08-27 16:15-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -695,7 +695,7 @@ msgstr "" msgid "COLOR CHANGE" msgstr "" -#: lib/simulator.py:47 lib/simulator.py:195 lib/simulator.py:202 +#: lib/simulator.py:47 lib/simulator.py:198 lib/simulator.py:205 msgid "Pause" msgstr "" @@ -707,12 +707,12 @@ msgstr "" msgid "Quit" msgstr "" -#: lib/simulator.py:153 +#: lib/simulator.py:156 #, python-format msgid "Speed: %d stitches/sec" msgstr "" -#: lib/simulator.py:198 +#: lib/simulator.py:201 msgid "Start" msgstr ""