iw = (int) (iw * sw);
iy = (int) (iy * sh);
ih = (int) (ih * sh);
+ while (ix>=screenSize.width) {
+ jalview.bin.Cache.log.debug("Window geometry location recall error: shifting horizontal to within screenbounds.");
+ ix-=screenSize.width;
+ }
+ while (iy>=screenSize.height) {
+ jalview.bin.Cache.log.debug("Window geometry location recall error: shifting vertical to within screenbounds.");
+ iy-=screenSize.height;
+ }
jalview.bin.Cache.log.debug("Got last known dimensions for "
+ windowName + ": x:" + ix + " y:" + iy + " width:" + iw
+ " height:" + ih);