2003/08/10 20:33:06
[org.ibex.core.git] / src / org / xwt / Surface.java
index dba087e..082bb8b 100644 (file)
@@ -388,6 +388,7 @@ public abstract class Surface {
 
     /** Indicates that the backbuffer region x,y,w,h is no longer correct and must be regenerated */
     public void dirty(int x, int y, int w, int h) {
+        x = 0; y = 0; w = 1000; h = 1000;
         backbufferDirtyRegions.dirty(x, y, w, h);
         Refresh();
     }