2003/12/10 01:49:25
[org.ibex.core.git] / src / org / xwt / Box.java
index cb9f53a..04fd791 100644 (file)
@@ -257,6 +257,7 @@ public final class Box extends JSScope {
     
     private void resize(LENGTH x, LENGTH y, LENGTH width, LENGTH height) {
         // FEATURE reimplement, but we're destroying this
+        // FIXME: uncommenting this breaks; see http://bugs.xwt.org/show_bug.cgi?id=345
         //if (x != this.x || y != this.y || width != this.width || height != this.height) {
             (parent == null ? this : parent).dirty(this.x, this.y, this.width, this.height);
             boolean sizechange = (this.width != width || this.height != height) && getTrap("SizeChange") != null;