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/extensions/params.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/extensions/params.py')
| -rw-r--r-- | lib/extensions/params.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/extensions/params.py b/lib/extensions/params.py index 1ba144b2..994cf3d6 100644 --- a/lib/extensions/params.py +++ b/lib/extensions/params.py @@ -477,9 +477,9 @@ class SettingsFrame(wx.Frame): self.metadata = kwargs.pop('metadata', []) # begin wxGlade: MyFrame.__init__ - wx.Frame.__init__(self, None, wx.ID_ANY, - _("Embroidery Params") - ) + wx.Frame.__init__(self, None, wx.ID_ANY, _("Embroidery Params")) + + self.SetWindowStyle(wx.FRAME_FLOAT_ON_PARENT) icon = wx.Icon(os.path.join( get_resource_dir("icons"), "inkstitch256x256.png")) |
