diff options
| author | Lex Neva <lexelby@users.noreply.github.com> | 2024-08-08 09:43:36 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-08-08 09:43:36 -0400 |
| commit | 47ad76f513846a8501f84c057b28a146031859b6 (patch) | |
| tree | 0d29cb0f87473f925c07f9b58949357ae1cf141d /lib/gui/simulator/simulator_window.py | |
| parent | 17b88ce2c14a0802e18e90d8dd142224013dfb15 (diff) | |
Show page in simulator (#3120)
* add exception logging helpers
* wip
* show page and drop shadow from SVG
* allow toggling page
* add page icon
* add dark mode icon
* showpageshadow
* refresh after background change (fix for macOS)
* fix params sim background
* try a native GraphicsBrush for windows
* show page button in standalone simulator only and adapt shadow color
* remove doubled line
---------
Co-authored-by: Kaalleen <reni@allenka.de>
Diffstat (limited to 'lib/gui/simulator/simulator_window.py')
| -rw-r--r-- | lib/gui/simulator/simulator_window.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/gui/simulator/simulator_window.py b/lib/gui/simulator/simulator_window.py index 2318041b..6ddc6f33 100644 --- a/lib/gui/simulator/simulator_window.py +++ b/lib/gui/simulator/simulator_window.py @@ -53,3 +53,6 @@ class SimulatorWindow(wx.Frame): def go(self): self.panel.go() + + def set_page_specs(self, page_specs): + self.panel.set_page_specs(page_specs) |
