Skip to content
This repository has been archived by the owner on Nov 20, 2024. It is now read-only.

Commit

Permalink
Fix window issue
Browse files Browse the repository at this point in the history
  • Loading branch information
danieldieeins committed Sep 17, 2024
1 parent bcbe41a commit 03bcc06
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -304,8 +304,8 @@ private void checkURL() throws IOException, UnsupportedPlatformException, CefIni
frame = new ZyneonWebFrame(getStartURL());
frame.pack();
}
frame.setMinimumSize(new Dimension(1200,500));
frame.setSize(new Dimension(1200,720));
frame.setMinimumSize(new Dimension(1201,501));
frame.setSize(new Dimension(1201,721));
frame.setResizable(true);
frame.setLocationRelativeTo(null);
}
Expand Down

0 comments on commit 03bcc06

Please sign in to comment.