From 71a09c3579dd5cb4cd8fa7fdc143561cbff74e12 Mon Sep 17 00:00:00 2001 From: Paul Cornett Date: Sun, 18 Aug 2013 16:00:22 +0000 Subject: [PATCH] avoid setting initial position if it was not specified, broken in r70734 git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74682 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/gtk/toplevel.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gtk/toplevel.cpp b/src/gtk/toplevel.cpp index 01a4079d54..eec3845ec1 100644 --- a/src/gtk/toplevel.cpp +++ b/src/gtk/toplevel.cpp @@ -664,7 +664,7 @@ bool wxTopLevelWindowGTK::Create( wxWindow *parent, PostCreation(); #ifndef __WXGTK3__ - if ((m_x != -1) || (m_y != -1)) + if (pos != wxDefaultPosition) gtk_widget_set_uposition( m_widget, m_x, m_y ); #endif -- 2.50.0