Set minimum size to [900, 525] because uses think it's a graphics bug window size can be reduced beyond the minimum size that the UI widgets allow

This commit is contained in:
Reinhard Pointner 2017-05-26 11:51:58 +08:00
parent ff4df3d0f7
commit 8fafe666c2
1 changed files with 1 additions and 1 deletions

View File

@ -93,7 +93,7 @@ public class MainFrame extends JFrame {
});
setSize(1060, 650);
setMinimumSize(new Dimension(880, 515));
setMinimumSize(new Dimension(900, 525));
// KEYBOARD SHORTCUTS
installAction(getRootPane(), getKeyStroke(VK_DELETE, CTRL_MASK | SHIFT_MASK), newAction("Clear Cache", evt -> {