GUI: improved small mode detection on some desktop resolutions (mode without avatars);

This commit is contained in:
Oleg Agafonov 2024-06-10 00:00:26 +04:00
parent 86fa92788e
commit 93221f8452

View file

@ -491,7 +491,7 @@ public final class GamePanel extends javax.swing.JPanel {
private void sizeToScreen() {
Rectangle rect = this.getBounds();
if (rect.height < 720) {
if (rect.height < 770) {
if (!smallMode) {
smallMode = true;
Dimension bbDimension = new Dimension(128, 184);