mirror of
https://github.com/M66B/FairEmail.git
synced 2026-04-05 16:43:26 +02:00
Default disable separator lines
This commit is contained in:
@@ -329,7 +329,7 @@ public class HtmlHelper {
|
||||
boolean disable_tracking = prefs.getBoolean("disable_tracking", true);
|
||||
boolean parse_classes = prefs.getBoolean("parse_classes", false);
|
||||
boolean inline_images = prefs.getBoolean("inline_images", false);
|
||||
boolean text_separators = prefs.getBoolean("text_separators", true);
|
||||
boolean text_separators = prefs.getBoolean("text_separators", false);
|
||||
|
||||
int textColorPrimary = Helper.resolveColor(context, android.R.attr.textColorPrimary);
|
||||
|
||||
@@ -1816,7 +1816,7 @@ public class HtmlHelper {
|
||||
@Nullable Html.ImageGetter imageGetter, @Nullable Html.TagHandler tagHandler) {
|
||||
SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(context);
|
||||
boolean debug = prefs.getBoolean("debug", false);
|
||||
boolean text_separators = prefs.getBoolean("text_separators", true);
|
||||
boolean text_separators = prefs.getBoolean("text_separators", false);
|
||||
|
||||
final int colorPrimary = Helper.resolveColor(context, R.attr.colorPrimary);
|
||||
final int colorAccent = Helper.resolveColor(context, R.attr.colorAccent);
|
||||
|
||||
Reference in New Issue
Block a user