Skip to content

Commit

Permalink
Merge pull request #549 from machawk1/issue-548
Browse files Browse the repository at this point in the history
Prevent status bar button from displaying on Windows as discussed in #548
  • Loading branch information
machawk1 authored Apr 12, 2022
2 parents d1bdc66 + 37378fe commit d5d6f4b
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 d5d6f4b

Please sign in to comment.