Skip to content

Commit

Permalink
wxGUI/gui_core: fix 'Set image size' dialog rendered size on wxPython…
Browse files Browse the repository at this point in the history
… 4.1.1 (#1890)
  • Loading branch information
tmszi committed Sep 29, 2021
1 parent 7388b3f commit 22320bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gui/wxpython/gui_core/dialogs.py
Expand Up @@ -1984,7 +1984,7 @@ def _layout(self):
flag=wx.EXPAND | wx.ALL, border=5)

self.panel.SetSizer(sizer)
sizer.Fit(self.panel)
sizer.Fit(self)
self.Layout()

def GetValues(self):
Expand Down

0 comments on commit 22320bc

Please sign in to comment.