Skip to content

Commit

Permalink
Fix export window sizing bug
Browse files Browse the repository at this point in the history
  • Loading branch information
DarkFenX committed Mar 9, 2019
1 parent 22fc6cb commit d2b306d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gui/copySelectDialog.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,8 +87,8 @@ def __init__(self, parent):
self.options[formatId][optId] = checkbox
if self.settings['options'].get(formatId, {}).get(optId, defaultFormatOptions.get(formatId, {}).get(optId)):
checkbox.SetValue(True)
bsizer.Add(checkbox, 1, wx.EXPAND | wx.TOP | wx.BOTTOM, 3)
mainSizer.Add(bsizer, 1, wx.EXPAND | wx.LEFT, 20)
bsizer.Add(checkbox, 0, wx.EXPAND | wx.TOP | wx.BOTTOM, 3)
mainSizer.Add(bsizer, 0, wx.EXPAND | wx.LEFT, 20)

buttonSizer = self.CreateButtonSizer(wx.OK | wx.CANCEL)
if buttonSizer:
Expand Down

0 comments on commit d2b306d

Please sign in to comment.