diff --git a/src/main/java/de/neemann/digital/gui/Main.java b/src/main/java/de/neemann/digital/gui/Main.java index 00fc6473e..af068bf15 100644 --- a/src/main/java/de/neemann/digital/gui/Main.java +++ b/src/main/java/de/neemann/digital/gui/Main.java @@ -198,7 +198,8 @@ public class Main extends JFrame implements ClosingWindowListener.ConfirmSave, E JMenu export = new JMenu(Lang.get("menu_export")); export.add(new ExportAction(Lang.get("menu_exportSVG"), "svg", GraphicSVGIndex::new)); export.add(new ExportAction(Lang.get("menu_exportSVGLaTex"), "svg", GraphicSVGLaTeX::new)); - export.add(new ExportAction(Lang.get("menu_exportPNG"), "png", (file, min, max) -> GraphicsImage.create(new FileOutputStream(file), min, max, "PNG", 2))); + export.add(new ExportAction(Lang.get("menu_exportPNGSmall"), "png", (file, min, max) -> GraphicsImage.create(new FileOutputStream(file), min, max, "PNG", 1))); + export.add(new ExportAction(Lang.get("menu_exportPNGLarge"), "png", (file, min, max) -> GraphicsImage.create(new FileOutputStream(file), min, max, "PNG", 2))); JMenu file = new JMenu(Lang.get("menu_file")); bar.add(file); diff --git a/src/main/resources/lang/lang_de.properties b/src/main/resources/lang/lang_de.properties index 0ae33b2aa..bdf411f67 100644 --- a/src/main/resources/lang/lang_de.properties +++ b/src/main/resources/lang/lang_de.properties @@ -230,7 +230,8 @@ menu_editAttributes_tt=Diese Attribute beeinflussen das Modell, wenn es in ander menu_fast=Schneller Lauf menu_fast_tt=F\u00FChrt das Modell aus, bis ein Stopsignal \u00FCber ein BRK-Element detektiert wird. menu_export=Export -menu_exportPNG=Export PNG +menu_exportPNGSmall=Export PNG klein +menu_exportPNGLarge=Export PNG gro\u00DF menu_exportSVG=Export SVG menu_exportSVGLaTex=Export SVG+LaTeX menu_delete=L\u00F6schen diff --git a/src/main/resources/lang/lang_en.properties b/src/main/resources/lang/lang_en.properties index 0f8f2a4d8..08acde0de 100644 --- a/src/main/resources/lang/lang_en.properties +++ b/src/main/resources/lang/lang_en.properties @@ -218,7 +218,8 @@ menu_fast_tt=Runs the model until a break is detected by the BRK element. menu_export=Export menu_exportSVG=Export SVG menu_exportSVGLaTex=Export SVG+LaTeX -menu_exportPNG=Export PNG +menu_exportPNGSmall=Export PNG small +menu_exportPNGLarge=Export PNG large menu_delete=Delete elements menu_delete_tt=Delete selected single element or group of elements menu_editRunAttributes=Simulation Settings