diff options
| author | Kaalleen <36401965+kaalleen@users.noreply.github.com> | 2023-10-18 15:57:49 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-10-18 15:57:49 +0200 |
| commit | 746a984dac0ac2df83cc4dd8c8ab9dea64d315fe (patch) | |
| tree | 27fb780457ad0a81181d9cd623dae24aaa692b6c /lib/gui/preferences.py | |
| parent | 59b97a059c1ed7ba88e3de9f5353826abb086d5c (diff) | |
Fix new param simulator for macOS and Windows (#2546)
* fix tooltip
* combine play and pause button
---------
Co-authored-by: Lex Neva
Diffstat (limited to 'lib/gui/preferences.py')
| -rw-r--r-- | lib/gui/preferences.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/gui/preferences.py b/lib/gui/preferences.py index 14c0d4dd..882ddfac 100644 --- a/lib/gui/preferences.py +++ b/lib/gui/preferences.py @@ -16,6 +16,8 @@ class PreferencesFrame(wx.Frame): wx.Frame.__init__(self, None, wx.ID_ANY, _("Preferences"), *args, **kwargs) self.SetTitle(_("Preferences")) + self.SetWindowStyle(wx.FRAME_FLOAT_ON_PARENT) + metadata = self.extension.get_inkstitch_metadata() self.panel_1 = wx.Panel(self, wx.ID_ANY) |
