2003/10/13 09:38:54
[org.ibex.core.git] / src / org / xwt / Surface.java
index cfc9939..8e44116 100644 (file)
@@ -223,7 +223,7 @@ public abstract class Surface extends PixelBuffer {
         Message.Q.add(new Message() { public void perform() {
             if (width == root.width && height == root.height) return;
             root.needs_reflow = true;
-            do { root.reflow(width, height); } while(abort);
+            do { abort = false; root.reflow(width, height); } while(abort);
         }});
         abort = true;
     }