mirror of
https://github.com/shadowfacts/lwjgl2-arm64.git
synced 2025-12-06 08:01:59 +01:00
Ignore setDisplayMode when the Display parent is set. Fix #98
This commit is contained in:
parent
1dbca8b623
commit
a5c4462a3e
|
|
@ -239,7 +239,8 @@ public final class Display {
|
||||||
throw new NullPointerException("mode must be non-null");
|
throw new NullPointerException("mode must be non-null");
|
||||||
boolean was_fullscreen = isFullscreen();
|
boolean was_fullscreen = isFullscreen();
|
||||||
current_mode = mode;
|
current_mode = mode;
|
||||||
if ( isCreated() ) {
|
if ( !isCreated() || parent != null )
|
||||||
|
return;
|
||||||
destroyWindow();
|
destroyWindow();
|
||||||
// If mode is not fullscreen capable, make sure we are in windowed mode
|
// If mode is not fullscreen capable, make sure we are in windowed mode
|
||||||
try {
|
try {
|
||||||
|
|
@ -256,7 +257,6 @@ public final class Display {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
private static DisplayMode getEffectiveMode() {
|
private static DisplayMode getEffectiveMode() {
|
||||||
return !isFullscreen() && parent != null ? new DisplayMode(parent.getWidth(), parent.getHeight()) : current_mode;
|
return !isFullscreen() && parent != null ? new DisplayMode(parent.getWidth(), parent.getHeight()) : current_mode;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue