Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 64fd8ed9 authored by Winson Chung's avatar Winson Chung
Browse files

Fix issue with sysui state flags not being committed

- These were not being explicitly committed which meant that they only
  properly set/unset when a subsequent sysui state change happened
  (which isn't always the case, leading to an mismatch in state)

Fixes: 263921242
Test: Open camera, show global actions dialog, go back and try to swipe
      home
Change-Id: I7734d8ab2f21c1a6a4b75ad39f0825c66872c0eb
parent fa71876c
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
@@ -189,7 +189,8 @@ public class SystemUIDialog extends AlertDialog implements ViewRootImpl.ConfigCh
        // for foldables that often go from large <=> small screen when folding/unfolding.
        ViewRootImpl.addConfigCallback(this);
        mDialogManager.setShowing(this, true);
        mSysUiState.setFlag(QuickStepContract.SYSUI_STATE_DIALOG_SHOWING, true);
        mSysUiState.setFlag(QuickStepContract.SYSUI_STATE_DIALOG_SHOWING, true)
                .commitUpdate(mContext.getDisplayId());
    }

    @Override
@@ -202,7 +203,8 @@ public class SystemUIDialog extends AlertDialog implements ViewRootImpl.ConfigCh

        ViewRootImpl.removeConfigCallback(this);
        mDialogManager.setShowing(this, false);
        mSysUiState.setFlag(QuickStepContract.SYSUI_STATE_DIALOG_SHOWING, false);
        mSysUiState.setFlag(QuickStepContract.SYSUI_STATE_DIALOG_SHOWING, false)
                .commitUpdate(mContext.getDisplayId());
    }

    public void setShowForAllUsers(boolean show) {