Skip to content

Commit

Permalink
Fix startup delay change
Browse files Browse the repository at this point in the history
  • Loading branch information
ukanth committed Nov 9, 2016
1 parent 67129ae commit f1c69fd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions aFWall/src/main/java/dev/ukanth/ufirewall/util/G.java
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ public class G extends android.app.Application {
private static final String SORT_BY = "sort";
//private static final String PROFILE_STORED_POSITION = "storedPosition";
private static final String LAST_STORED_PROFILE = "storedProfile";
private static final String STARTUP_DELAY = "addStartupDelay";
private static final String STARTUP_DELAY = "addDelayStart";
private static final String SYSTEM_APP_COLOR = "sysColor";
private static final String ACTIVE_RULES = "activeRules";
private static final String ACTIVE_NOTIFICATION = "activeNotification";
Expand Down Expand Up @@ -319,7 +319,7 @@ public static void sortBy(String sort) {

public static boolean activeRules() { return gPrefs.getBoolean(ACTIVE_RULES, true); }

public static boolean startupDelay() { return gPrefs.getBoolean(STARTUP_DELAY, true); }
public static boolean startupDelay() { return gPrefs.getBoolean(STARTUP_DELAY, false); }

//public static boolean usePatterns() { return gPrefs.getBoolean(USE_PASSWORD_PATTERN, false); }
//public static boolean setUsePatterns(boolean val) { gPrefs.edit().putBoolean(USE_PASSWORD_PATTERN, val).commit(); return val; }
Expand Down

0 comments on commit f1c69fd

Please sign in to comment.