[Date Prev][Date Next][Thread Prev][Thread Next][Thread Index]

[XaraXtreme-commits] Commit Complete



Commit by  : alex
Repository : xara
Revision   : 999
Date       : Thu May 11 12:14:59 BST 2006

Changed paths:
   M /Trunk/XaraLX/wxOil/dlgevt.cpp

Another dialog event handling fix


Diff:
Index: Trunk/XaraLX/wxOil/dlgevt.cpp
===================================================================
--- Trunk/XaraLX/wxOil/dlgevt.cpp	(revision 998)
+++ Trunk/XaraLX/wxOil/dlgevt.cpp	(revision 999)
@@ -568,6 +568,9 @@
 void DialogEventHandler::MoveEvent(wxMoveEvent& event)
 {
 	DialogManager::Event(this, event);
+
+	// We pretend we didn't handle it, since dialogs with sizers etc. will need it
+	event.Skip();
 }
 
 /********************************************************************************************
@@ -591,7 +594,7 @@
 {
 	DialogManager::Event(this, event);
 	
-	// We pretend we didn't handle it, since Property Dialogs need it
+	// We pretend we didn't handle it, since dialogs with sizers etc. will need it
 	event.Skip();
 }
 


Xara