diff --git a/src/com/jpexs/decompiler/flash/gui/ImagePanel.java b/src/com/jpexs/decompiler/flash/gui/ImagePanel.java index 8ed977b7f..5ca0f066c 100644 --- a/src/com/jpexs/decompiler/flash/gui/ImagePanel.java +++ b/src/com/jpexs/decompiler/flash/gui/ImagePanel.java @@ -1467,7 +1467,7 @@ public final class ImagePanel extends JPanel implements MediaDisplay { Double guide = guidesX.get(d); int guideInPanel = (int) Math.round(guide * getRealZoom() + offsetPoint.getX()); if (mousePoint.x == guideInPanel) { - String newPositionStr = ViewMessages.showInputDialog(ImagePanel.this, AppStrings.translate("move_guide.position"), AppStrings.translate("move_guide"), EcmaNumberToString.stringFor(guide)); + String newPositionStr = ViewMessages.showInputDialog(ImagePanel.this, AppStrings.translate("move_guide.position"), AppStrings.translate("move_guide"), View.getIcon("guidemovex32"), EcmaNumberToString.stringFor(guide)); if (newPositionStr != null) { try { double newPosition = Double.parseDouble(newPositionStr); @@ -1486,7 +1486,7 @@ public final class ImagePanel extends JPanel implements MediaDisplay { Double guide = guidesY.get(d); int guideInPanel = (int) Math.round(guide * getRealZoom() + offsetPoint.getY()); if (mousePoint.y == guideInPanel) { - String newPositionStr = ViewMessages.showInputDialog(ImagePanel.this, AppStrings.translate("move_guide.position"), AppStrings.translate("move_guide"), EcmaNumberToString.stringFor(guide)); + String newPositionStr = ViewMessages.showInputDialog(ImagePanel.this, AppStrings.translate("move_guide.position"), AppStrings.translate("move_guide"), View.getIcon("guidemovey32"), EcmaNumberToString.stringFor(guide)); if (newPositionStr != null) { try { double newPosition = Double.parseDouble(newPositionStr); diff --git a/src/com/jpexs/decompiler/flash/gui/graphics/guidemovex32.png b/src/com/jpexs/decompiler/flash/gui/graphics/guidemovex32.png new file mode 100644 index 000000000..5b1b20ad2 Binary files /dev/null and b/src/com/jpexs/decompiler/flash/gui/graphics/guidemovex32.png differ diff --git a/src/com/jpexs/decompiler/flash/gui/graphics/guidemovey32.png b/src/com/jpexs/decompiler/flash/gui/graphics/guidemovey32.png new file mode 100644 index 000000000..ca370b6ac Binary files /dev/null and b/src/com/jpexs/decompiler/flash/gui/graphics/guidemovey32.png differ