Fixed initial toggle manage system applications

This commit is contained in:
M66B 2015-11-01 14:17:20 +01:00
parent 4d87d0494b
commit 078b7074ed
1 changed files with 1 additions and 1 deletions

View File

@ -420,7 +420,7 @@ public class ActivityMain extends AppCompatActivity implements SharedPreferences
} }
private void menu_system(SharedPreferences prefs) { private void menu_system(SharedPreferences prefs) {
prefs.edit().putBoolean("manage_system", !prefs.getBoolean("manage_system", true)).apply(); prefs.edit().putBoolean("manage_system", !prefs.getBoolean("manage_system", false)).apply();
updateApplicationList(); updateApplicationList();
SinkholeService.reload(null, this); SinkholeService.reload(null, this);
} }