diff --git src/wp-admin/js/image-edit.js src/wp-admin/js/image-edit.js
index 0d8eaf081f..3a10c96cd0 100644
--- src/wp-admin/js/image-edit.js
+++ src/wp-admin/js/image-edit.js
@@ -579,10 +579,14 @@
 		}
 
 		this.initCrop(postid, img, parent);
-		this.setCropSelection(postid, 0);
+		this.setCropSelection(postid, { 'x1': 0, 'y1': 0, 'width': img[0].width, 'height': img[0].height } );
+
 		this.toggleEditor(postid, 0);
 		// Editor is ready, move focus to the first focusable element.
 		$( '.imgedit-wrap .imgedit-help-toggle' ).eq( 0 ).focus();
+			this.iasapi.setSelection(0, 0, img[0].width, img[0].height + 1, true);
+			this.iasapi.setOptions({ show: true });
+			this.iasapi.update();
 	},
 
 	/**
