]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/wincmn.cpp
wxTimer/timercmn.cpp change
[wxWidgets.git] / src / common / wincmn.cpp
index a9f702acfd5302368338b0a670741d31e061be9d..9cad968ed4eb27107557a43ecd39cd2f097ce6d2 100644 (file)
@@ -354,7 +354,9 @@ void wxWindowBase::Centre(int direction)
         yNew += posParent.y;
     }
 
-    Move(xNew, yNew);
+    // move the centre of this window to this position (not the upper left
+    // corner as it was done before)
+    Move(xNew - width / 2, yNew - height / 2);
 }
 
 // fits the window around the children