Skip to content

Commit

Permalink
Shade: Set revealed to false in onResume only if there is no filter
Browse files Browse the repository at this point in the history
  • Loading branch information
amirzaidi committed Mar 1, 2020
1 parent b004aa3 commit 8e6f131
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion shade/src/amirz/shade/ShadeLauncherCallbacks.java
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,9 @@ public void onResume() {
}

UnreadSession.getInstance(mLauncher).onResume();
HiddenAppsDrawerState.getInstance(mLauncher).setRevealed(false);
if (!mLauncher.getAppsView().getApps().hasFilter()) {
HiddenAppsDrawerState.getInstance(mLauncher).setRevealed(false);
}
}

@Override
Expand Down

0 comments on commit 8e6f131

Please sign in to comment.