From b76bcbb086e8034f3f4b4c3cd2ebeebe0873e2bc Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Mon, 29 Oct 2018 13:55:19 -0700 Subject: [PATCH] Don't explicitly set the position of the frame --- demo/run.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/demo/run.py b/demo/run.py index fbf5cbd2..1142e9c5 100755 --- a/demo/run.py +++ b/demo/run.py @@ -55,7 +55,7 @@ class RunDemoApp(wx.App, wx.lib.mixins.inspection.InspectionMixin): self.SetAssertMode(assertMode) self.InitInspection() # for the InspectionMixin base class - frame = wx.Frame(None, -1, "RunDemo: " + self.name, pos=(50,50), size=(200,100), + frame = wx.Frame(None, -1, "RunDemo: " + self.name, size=(200,100), style=wx.DEFAULT_FRAME_STYLE, name="run a sample") frame.CreateStatusBar()