mirror of https://github.com/M66B/FairEmail.git
Refactoring
This commit is contained in:
parent
82a46f5555
commit
2d714f4ade
|
@ -150,6 +150,7 @@ public class AdapterMessage extends RecyclerView.Adapter<AdapterMessage.ViewHold
|
||||||
private boolean preview;
|
private boolean preview;
|
||||||
private boolean autohtml;
|
private boolean autohtml;
|
||||||
private boolean autoimages;
|
private boolean autoimages;
|
||||||
|
private boolean invert;
|
||||||
private boolean authentication;
|
private boolean authentication;
|
||||||
private boolean debug;
|
private boolean debug;
|
||||||
|
|
||||||
|
@ -1400,9 +1401,6 @@ public class AdapterMessage extends RecyclerView.Adapter<AdapterMessage.ViewHold
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(context);
|
|
||||||
boolean invert = prefs.getBoolean("invert", false);
|
|
||||||
|
|
||||||
if (dark && invert) {
|
if (dark && invert) {
|
||||||
// https://bugs.chromium.org/p/chromium/issues/detail?id=578150
|
// https://bugs.chromium.org/p/chromium/issues/detail?id=578150
|
||||||
Paint paint = new Paint();
|
Paint paint = new Paint();
|
||||||
|
@ -3066,6 +3064,7 @@ public class AdapterMessage extends RecyclerView.Adapter<AdapterMessage.ViewHold
|
||||||
this.autohtml = prefs.getBoolean("autohtml", false);
|
this.autohtml = prefs.getBoolean("autohtml", false);
|
||||||
this.autoimages = prefs.getBoolean("autoimages", false);
|
this.autoimages = prefs.getBoolean("autoimages", false);
|
||||||
this.authentication = prefs.getBoolean("authentication", false);
|
this.authentication = prefs.getBoolean("authentication", false);
|
||||||
|
this.invert = prefs.getBoolean("invert", false);
|
||||||
this.debug = prefs.getBoolean("debug", false);
|
this.debug = prefs.getBoolean("debug", false);
|
||||||
|
|
||||||
this.textSize = Helper.getTextSize(context, zoom);
|
this.textSize = Helper.getTextSize(context, zoom);
|
||||||
|
|
Loading…
Reference in New Issue