diff options
| author | Lex Neva <github.com@lexneva.name> | 2018-08-27 16:15:58 -0400 |
|---|---|---|
| committer | Lex Neva <github.com@lexneva.name> | 2018-08-27 16:27:51 -0400 |
| commit | ab656800a067b9ebbe7f200ade0e5a5006da1cda (patch) | |
| tree | fe0e9a0cd63fa08ba80763547344f7bae63a9c42 | |
| parent | a636462803342683210bbeb64e49782209c2794f (diff) | |
fix windows issue
| -rw-r--r-- | lib/simulator.py | 7 | ||||
| -rw-r--r-- | messages.po | 8 |
2 files changed, 9 insertions, 6 deletions
diff --git a/lib/simulator.py b/lib/simulator.py index 5b497cd8..0b805acf 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 b21083d5..15718012 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 <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\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 "" |
