When setting the initialSelection with width of MIN_WIDTH or height of MIN_HEIGHT an exception gets thrown by GWT, as the value of "-1" will not be replaced.
Suggestion for com.google.code.gwt.crop.client.GWTCropper#setInitialSelection(int, int, int, int, boolean):
if (width >= MIN_WIDTH)
this.nInnerWidth = width;
if (height >= MIN_HEIGHT)
this.nInnerHeight = height;
When setting the initialSelection with width of MIN_WIDTH or height of MIN_HEIGHT an exception gets thrown by GWT, as the value of "-1" will not be replaced.
Suggestion for com.google.code.gwt.crop.client.GWTCropper#setInitialSelection(int, int, int, int, boolean):