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/simulator/simulator_window.py | |
| 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/simulator/simulator_window.py')
| -rw-r--r-- | lib/gui/simulator/simulator_window.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/gui/simulator/simulator_window.py b/lib/gui/simulator/simulator_window.py index 83321745..2318041b 100644 --- a/lib/gui/simulator/simulator_window.py +++ b/lib/gui/simulator/simulator_window.py @@ -17,8 +17,8 @@ class SimulatorWindow(wx.Frame): self.sizer = wx.BoxSizer(wx.VERTICAL) - self.statusbar = self.CreateStatusBar(2) - self.statusbar.SetStatusWidths((0, -1)) + self.statusbar = self.CreateStatusBar(3) + self.statusbar.SetStatusWidths((0, -1, -1)) if panel and parent: self.is_child = True |
