Added: #2463 Export subsprites animation context menu on frames

This commit is contained in:
Jindra Petřík
2025-06-02 22:11:52 +02:00
parent b5ba12ef8c
commit a0bfa7c8c0
12 changed files with 476 additions and 37 deletions

View File

@@ -189,7 +189,11 @@ public class ExportDialog extends AppDialog {
}
public double getZoom() {
return Double.parseDouble(zoomTextField.getText()) / 100;
try {
return Double.parseDouble(zoomTextField.getText()) / 100;
} catch (NumberFormatException nfe) {
return 1;
}
}
private void saveConfig() {