diff options
| author | Kaalleen <36401965+kaalleen@users.noreply.github.com> | 2024-06-25 23:46:50 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-06-25 23:46:50 +0200 |
| commit | 850958b5bc6017da66fad041dabc6ddd7b8d9f69 (patch) | |
| tree | 5ba42bcd4153631d58e9fb3d48ba25411f4adf74 /lib/gui/lettering | |
| parent | 75a9ea2e1dc16bfc8b41d9a747fdb29b5d3d0b14 (diff) | |
Simulator: make colors visible on background (#3010)
* simulator: color visible on background
* add design dimension info to simulator statusbar
* update preview when apply font size filter
* add info box
* preferences: check if stitch_plan is loaded
Diffstat (limited to 'lib/gui/lettering')
| -rw-r--r-- | lib/gui/lettering/main_panel.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/gui/lettering/main_panel.py b/lib/gui/lettering/main_panel.py index eb3d61a4..a99fe46d 100644 --- a/lib/gui/lettering/main_panel.py +++ b/lib/gui/lettering/main_panel.py @@ -266,6 +266,7 @@ class LetteringPanel(wx.Panel): elif filter_size != 0: self.options_panel.scale_spinner.SetValue(int(filter_size / font.size * 100)) self.settings['scale'] = self.options_panel.scale_spinner.GetValue() + self.update_preview() def resize(self, event=None): description = self.options_panel.font_description.GetLabel().replace("\n", " ") |
