Skip to content

Commit

Permalink
Fix small UI bug
Browse files Browse the repository at this point in the history
  • Loading branch information
topjohnwu committed Jul 10, 2017
1 parent 264c6a5 commit b5e8673
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/src/main/java/com/topjohnwu/magisk/MagiskFragment.java
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,7 @@ public void onStart() {
updateCheckUI();
if (magiskManager.safetyNetDone.isTriggered)
updateSafetyNetUI();
if (magiskManager.blockDetectionDone.isTriggered)
if (magiskManager.blockDetectionDone.isTriggered || !Shell.rootAccess())
updateInstallUI();
magiskManager.updateCheckDone.register(this);
magiskManager.safetyNetDone.register(this);
Expand Down

0 comments on commit b5e8673

Please sign in to comment.