提交 4a2e3592 编写于 作者: D dmarkov

8173853: IllegalArgumentException in java.awt.image.ReplicateScaleFilter

Reviewed-by: prr, serb
上级 598ffb18
......@@ -65,7 +65,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);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册