Skip to content

Commit

Permalink
Prevent status bar button from displaying on Windows as discussed
Browse files Browse the repository at this point in the history
in #548
  • Loading branch information
machawk1 committed Apr 12, 2022
1 parent d1bdc66 commit 37378fe
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion bundledApps/WAIL.py
Original file line number Diff line number Diff line change
Expand Up @@ -2468,7 +2468,9 @@ def __init__(self, parent):

self.msg = ''
self.sb_button.Bind(wx.EVT_BUTTON, self.press_button)
self.reposition()

if not util.is_windows(): # See #548
self.reposition()

def reposition(self):
rect = self.GetFieldRect(1)
Expand Down

0 comments on commit 37378fe

Please sign in to comment.