8173853: IllegalArgumentException in java.awt.image.ReplicateScaleFilter

Reviewed-by: prr, serb
This commit is contained in:
Dmitry Markov 2017-03-14 09:03:43 +03:00
parent 17679435a1
commit 18154936f0

View File

@ -66,7 +66,8 @@ public abstract class CustomCursor extends Cursor {
// Scale image to nearest supported size.
Dimension nativeSize = toolkit.getBestCursorSize(width, height);
if (nativeSize.width != width || nativeSize.height != height) {
if ((nativeSize.width != width || nativeSize.height != height) &&
(nativeSize.width != 0 && nativeSize.height != 0)) {
cursor = cursor.getScaledInstance(nativeSize.width,
nativeSize.height,
Image.SCALE_DEFAULT);