display reblog popup by default

This commit is contained in:
sk 2023-04-07 16:04:35 +02:00
parent 4b2fcd760a
commit 21c4cef397
1 changed files with 1 additions and 1 deletions

View File

@ -103,7 +103,7 @@ public class GlobalUserPreferences{
autoHideFab=prefs.getBoolean("autoHideFab", true);
replyLineAboveHeader=prefs.getBoolean("replyLineAboveHeader", true);
compactReblogReplyLine=prefs.getBoolean("compactReblogReplyLine", true);
confirmBeforeReblog=prefs.getBoolean("confirmBeforeReblog", false);
confirmBeforeReblog=prefs.getBoolean("confirmBeforeReblog", true);
publishButtonText=prefs.getString("publishButtonText", "");
theme=ThemePreference.values()[prefs.getInt("theme", 0)];
recentLanguages=fromJson(prefs.getString("recentLanguages", null), recentLanguagesType, new HashMap<>());