summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKaalleen <36401965+kaalleen@users.noreply.github.com>2023-04-27 22:51:01 +0200
committerGitHub <noreply@github.com>2023-04-27 22:51:01 +0200
commite6279ccb19266d760f0694010b7f03900417688c (patch)
tree7c1779fb5f4834d0a0f773a133b2cd0b084aeea9
parentd458ea563b1adc39000e4c362ca3d2b28f2deefa (diff)
lettering: preserve scale 02 (#2245)
-rw-r--r--lib/extensions/lettering.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/extensions/lettering.py b/lib/extensions/lettering.py
index 8a8445bf..179f51fb 100644
--- a/lib/extensions/lettering.py
+++ b/lib/extensions/lettering.py
@@ -68,7 +68,7 @@ class LetteringFrame(wx.Frame):
# options
self.options_box = wx.StaticBox(self, wx.ID_ANY, label=_("Options"))
- self.scale_spinner = wx.SpinCtrl(self, wx.ID_ANY, min=100, max=100, initial=100)
+ self.scale_spinner = wx.SpinCtrl(self, wx.ID_ANY, min=0, max=1000, initial=100)
self.scale_spinner.Bind(wx.EVT_SPINCTRL, lambda event: self.on_change("scale", event))
self.back_and_forth_checkbox = wx.CheckBox(self, label=_("Stitch lines of text back and forth"))