From 03adb6fd2e9324b33e16b1563dcabdd5d6b8f149 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Tue, 27 May 2014 17:27:10 +0000 Subject: [PATCH] Ensure that wxTestableFrame is shown on the (main) screen. Undo the accidental commit of local modifications in 13a119cca8522fb9588de7cd2ffc6987196ea48d . This is the backport of 498f07a5b250973a1aad00a29eb087535e7a0d34 from master. --- tests/testableframe.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/testableframe.cpp b/tests/testableframe.cpp index e76c76f5d9..1b63defb88 100644 --- a/tests/testableframe.cpp +++ b/tests/testableframe.cpp @@ -18,7 +18,8 @@ wxTestableFrame::wxTestableFrame() : wxFrame(NULL, wxID_ANY, "Test Frame") { - Move(2000, 200); + // Use fixed position to facilitate debugging. + Move(200, 200); } void wxTestableFrame::OnEvent(wxEvent& evt)