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:
parent
ff4df3d0f7
commit
8fafe666c2
|
@ -93,7 +93,7 @@ public class MainFrame extends JFrame {
|
||||||
});
|
});
|
||||||
|
|
||||||
setSize(1060, 650);
|
setSize(1060, 650);
|
||||||
setMinimumSize(new Dimension(880, 515));
|
setMinimumSize(new Dimension(900, 525));
|
||||||
|
|
||||||
// KEYBOARD SHORTCUTS
|
// KEYBOARD SHORTCUTS
|
||||||
installAction(getRootPane(), getKeyStroke(VK_DELETE, CTRL_MASK | SHIFT_MASK), newAction("Clear Cache", evt -> {
|
installAction(getRootPane(), getKeyStroke(VK_DELETE, CTRL_MASK | SHIFT_MASK), newAction("Clear Cache", evt -> {
|
||||||
|
|
Loading…
Reference in New Issue