Add maximize button to resizeable windows and make character editor resizeable

This commit is contained in:
DarkPhoenix
2019-08-26 12:59:00 +03:00
parent 5d6cdcbd23
commit 0269a64ae1
10 changed files with 16 additions and 12 deletions

View File

@@ -39,7 +39,7 @@ class DevTools(AuxiliaryFrame):
def __init__(self, parent):
super().__init__(
parent, id=wx.ID_ANY, title="Development Tools", style=wx.RESIZE_BORDER,
parent, id=wx.ID_ANY, title="Development Tools", resizeable=True,
size=wx.Size(400, 320) if "wxGTK" in wx.PlatformInfo else wx.Size(400, 240))
self.mainFrame = parent
self.block = False