Datasets:
apcl
/

Modalities:
Text
Formats:
webdataset
Libraries:
Datasets
WebDataset
mcmillco's picture
init
e789b06
raw
history blame
261 Bytes
TDAT: public void setDecorationBounds(int x, int y, int w, int h) {
if (this.bounds == null) {
this.bounds = new Rectangle(x, y, w, h);
} else {
this.bounds.setBounds(x, y, w, h);
}
synch();
}
COM: <s> change the current decorated bounds </s>