From: Paul Cornett Date: Sun, 18 Aug 2013 16:00:22 +0000 (+0000) Subject: avoid setting initial position if it was not specified, broken in r70734 X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/71a09c3579dd5cb4cd8fa7fdc143561cbff74e12 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 --- 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