Allow window resize for older versions of minecraft

This commit is contained in:
SerpentSpirale 2022-03-21 22:54:08 +01:00 committed by Boulay Mathias
parent d8482499a3
commit 146cc46121
2 changed files with 3 additions and 0 deletions

View File

@ -344,6 +344,9 @@ public class Display {
latestResized = true;
latestWidth = width;
latestHeight = height;
//System.out.println("Window size callback");
if(parent != null) parent.setSize(width, height);
}
};