2003/12/16 23:01:41
[org.ibex.core.git] / src / org / xwt / Box.java
index 07c0066..8287e45 100644 (file)
@@ -57,6 +57,8 @@ public final class Box extends JSScope implements Scheduler.Task {
     //#define CHECKSET_BOOLEAN(prop) boolean nu = toBoolean(value); if (nu == prop) break; prop = nu;
     //#define CHECKSET_STRING(prop) if ((value==null&&prop==null)||(value!=null&&value.equals(prop))) break; prop=(String)value;
 
+    void mark_for_repack() { MARK_REPACK; }
+
     protected Box() { super(null); }
 
     static Hash boxToCursor = new Hash(500, 3);
@@ -74,7 +76,7 @@ public final class Box extends JSScope implements Scheduler.Task {
     static final String[] props = new String[] {
         "fill", "stroke", "image", "tile", "fixedaspect", "text", "path", "font",
         "shrink", "hshrink", "vshrink", "x", "y", "width", "height", "cols", "rows",
-        "colspan", "rowspan", "align", "invisible", "absolute", "globalx", "globaly",
+        "colspan", "rowspan", "align", "visible", "absolute", "globalx", "globaly",
         "minwidth", "maxwidth", "minheight", "maxheight",
         "numchildren", "redirect", "cursor", "mousex", "mousey", "xwt", "static",
         "mouseinside", "root", "thisbox", "indexof"