Skip to content

Commit

Permalink
Fixes issue where the GUI can be resized below it's minimum dimensions.
Browse files Browse the repository at this point in the history
  • Loading branch information
Tyler MacEachern committed Feb 2, 2018
1 parent 113a969 commit 164c108
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/Driver.java
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ public static void main(final String[] args) {
public void start(final Stage primaryStage) {
primaryStage.getIcons().add(new Image("icons/Icon.png"));
primaryStage.setTitle("Schillsaver - Powered by /g/entoomen\u00a9\u00ae");
primaryStage.setMinWidth(512);
primaryStage.setMinHeight(512);

final HashMap<String, String> defaultSettings = new HashMap<>();
defaultSettings.put("FFMPEG Executable Path", "");
Expand Down

0 comments on commit 164c108

Please sign in to comment.