Ignore:
Timestamp:
05/23/19 12:20:07 (5 years ago)
Author:
bln4
Message:

MaxWidth on text items is now a thing. Use this on text boxes in authentication frameset.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/expeditee/items/Item.java

    r1258 r1369  
    11701170                return getMinWidth();
    11711171        }
     1172       
     1173        public Integer getMaxWidthToSave() {
     1174                return getMaxWidth();
     1175        }
    11721176
    11731177        public Integer getWidth()
     
    11771181       
    11781182        public Integer getMinWidth() {
     1183                return null;
     1184        }
     1185       
     1186        public Integer getMaxWidth() {
    11791187                return null;
    11801188        }
     
    22962304                throw new UnsupportedOperationException("Item type does not support minwidth attribute.");
    22972305        }
     2306       
     2307        public void setMaxWidth(Integer width) throws UnsupportedOperationException {
     2308                throw new UnsupportedOperationException("Item type does not support maxwidth attribute");
     2309        }
    22982310
    22992311        public void setRightMargin(int i, boolean fixWidth)
Note: See TracChangeset for help on using the changeset viewer.