Default enable text separator lines

This commit is contained in:
M66B 2020-11-15 21:08:38 +01:00
parent f5fa40f678
commit ea1317cb85
2 changed files with 2 additions and 2 deletions

View File

@ -966,7 +966,7 @@ public class FragmentOptionsDisplay extends FragmentBase implements SharedPrefer
swTextSize.setChecked(prefs.getBoolean("text_size", true));
swTextFont.setChecked(prefs.getBoolean("text_font", true));
swTextAlign.setChecked(prefs.getBoolean("text_align", true));
swTextSeparators.setChecked(prefs.getBoolean("text_separators", !BuildConfig.PLAY_STORE_RELEASE));
swTextSeparators.setChecked(prefs.getBoolean("text_separators", true));
swCollapseQuotes.setChecked(prefs.getBoolean("collapse_quotes", false));
swImagesInline.setChecked(prefs.getBoolean("inline_images", false));
swAttachmentsAlt.setChecked(prefs.getBoolean("attachments_alt", false));

View File

@ -369,7 +369,7 @@ public class HtmlHelper {
boolean disable_tracking = prefs.getBoolean("disable_tracking", true);
boolean parse_classes = prefs.getBoolean("parse_classes", true);
boolean inline_images = prefs.getBoolean("inline_images", false);
boolean text_separators = prefs.getBoolean("text_separators", !BuildConfig.PLAY_STORE_RELEASE);
boolean text_separators = prefs.getBoolean("text_separators", true);
int textColorPrimary = Helper.resolveColor(context, android.R.attr.textColorPrimary);