Fixed bug 4424 - Android windowed mode is broken (Thanks Jonas Thiem!)
parent
03b0e1dee0
commit
4d2b5c791e
|
@ -1341,7 +1341,7 @@ public class SDLActivity extends Activity implements View.OnSystemUiVisibilityCh
|
||||||
};
|
};
|
||||||
|
|
||||||
public void onSystemUiVisibilityChange(int visibility) {
|
public void onSystemUiVisibilityChange(int visibility) {
|
||||||
if (SDLActivity.mFullscreenModeActive && (visibility & View.SYSTEM_UI_FLAG_FULLSCREEN) == 0 || (visibility & View.SYSTEM_UI_FLAG_HIDE_NAVIGATION) == 0) {
|
if (SDLActivity.mFullscreenModeActive && ((visibility & View.SYSTEM_UI_FLAG_FULLSCREEN) == 0 || (visibility & View.SYSTEM_UI_FLAG_HIDE_NAVIGATION) == 0)) {
|
||||||
|
|
||||||
Handler handler = getWindow().getDecorView().getHandler();
|
Handler handler = getWindow().getDecorView().getHandler();
|
||||||
if (handler != null) {
|
if (handler != null) {
|
||||||
|
|
Loading…
Reference in New Issue