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/element_info.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/element_info.py')
| -rw-r--r-- | lib/gui/element_info.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/gui/element_info.py b/lib/gui/element_info.py index 9d0f654b..c64ac1a7 100644 --- a/lib/gui/element_info.py +++ b/lib/gui/element_info.py @@ -16,6 +16,8 @@ class ElementInfoFrame(wx.Frame): self.index = 0 wx.Frame.__init__(self, None, wx.ID_ANY, _("Element Info"), *args, **kwargs) + self.SetWindowStyle(wx.FRAME_FLOAT_ON_PARENT) + self.main_panel = wx.Panel(self, wx.ID_ANY) notebook_sizer = wx.BoxSizer(wx.VERTICAL) |
