]> git.saurik.com Git - wxWidgets.git/commitdiff
avoid duplicate move events
authorPaul Cornett <paulcor@bullseye.com>
Sat, 17 Aug 2013 16:38:12 +0000 (16:38 +0000)
committerPaul Cornett <paulcor@bullseye.com>
Sat, 17 Aug 2013 16:38:12 +0000 (16:38 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74665 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/gtk/toplevel.cpp

index 3c7d3038e4d19e99e102a1b0acf4db3cc98cba5b..9199f36516d5ef2f972e9ec1bfc65149b43523f4 100644 (file)
@@ -327,11 +327,14 @@ void wxTopLevelWindowGTK::GTKConfigureEvent(int x, int y)
         gtk_window_get_position(GTK_WINDOW(m_widget), &point.x, &point.y);
     }
 
-    m_x = point.x;
-    m_y = point.y;
-    wxMoveEvent event(point, GetId());
-    event.SetEventObject(this);
-    HandleWindowEvent(event);
+    if (m_x != point.x || m_y != point.y)
+    {
+        m_x = point.x;
+        m_y = point.y;
+        wxMoveEvent event(point, GetId());
+        event.SetEventObject(this);
+        HandleWindowEvent(event);
+    }
 }
 
 //-----------------------------------------------------------------------------
@@ -1102,6 +1105,9 @@ void wxTopLevelWindowGTK::DoSetSize( int x, int y, int width, int height, int si
     if ( m_x != old_x || m_y != old_y )
     {
         gtk_window_move( GTK_WINDOW(m_widget), m_x, m_y );
+        wxMoveEvent event(wxPoint(m_x, m_y), GetId());
+        event.SetEventObject(this);
+        HandleWindowEvent(event);
     }
 
     const wxSize oldSize(m_width, m_height);