diff options
| author | Kaalleen <36401965+kaalleen@users.noreply.github.com> | 2023-04-27 22:51:01 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-04-27 22:51:01 +0200 |
| commit | e6279ccb19266d760f0694010b7f03900417688c (patch) | |
| tree | 7c1779fb5f4834d0a0f773a133b2cd0b084aeea9 | |
| parent | d458ea563b1adc39000e4c362ca3d2b28f2deefa (diff) | |
lettering: preserve scale 02 (#2245)
| -rw-r--r-- | lib/extensions/lettering.py | 2 |
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")) |
