mirror of
https://github.com/M66B/FairEmail.git
synced 2025-02-24 15:11:03 +00:00
parent
c75059120c
commit
2a3cb60b82
5 changed files with 5 additions and 6 deletions
|
@ -2403,7 +2403,7 @@ public class AdapterMessage extends RecyclerView.Adapter<AdapterMessage.ViewHold
|
|||
Document document = Jsoup.parse(body);
|
||||
|
||||
SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(context);
|
||||
boolean inline = prefs.getBoolean("inline_images", true);
|
||||
boolean inline = prefs.getBoolean("inline_images", false);
|
||||
|
||||
boolean has_images = false;
|
||||
for (Element img : document.select("img")) {
|
||||
|
@ -3743,7 +3743,7 @@ public class AdapterMessage extends RecyclerView.Adapter<AdapterMessage.ViewHold
|
|||
final ContentLoadingProgressBar pbWait = dview.findViewById(R.id.pbWait);
|
||||
|
||||
SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(getContext());
|
||||
boolean inline = prefs.getBoolean("inline_images", true);
|
||||
boolean inline = prefs.getBoolean("inline_images", false);
|
||||
boolean autocontent = prefs.getBoolean("autocontent", false);
|
||||
|
||||
setupWebView(webView);
|
||||
|
|
|
@ -3098,7 +3098,7 @@ public class FragmentMessages extends FragmentBase implements SharedPreferences.
|
|||
long id = args.getLong("id");
|
||||
|
||||
SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(context);
|
||||
boolean inline_images = prefs.getBoolean("inline_images", true);
|
||||
boolean inline_images = prefs.getBoolean("inline_images", false);
|
||||
|
||||
DB db = DB.getInstance(context);
|
||||
try {
|
||||
|
|
|
@ -389,7 +389,7 @@ public class FragmentOptionsDisplay extends FragmentBase implements SharedPrefer
|
|||
swAttachmentsAlt.setChecked(prefs.getBoolean("attachments_alt", false));
|
||||
swContrast.setChecked(prefs.getBoolean("contrast", false));
|
||||
swMonospaced.setChecked(prefs.getBoolean("monospaced", false));
|
||||
swImagesInline.setChecked(prefs.getBoolean("inline_images", true));
|
||||
swImagesInline.setChecked(prefs.getBoolean("inline_images", false));
|
||||
swImagesContacts.setChecked(prefs.getBoolean("contact_images", true));
|
||||
swImagesAll.setChecked(prefs.getBoolean("all_images", false));
|
||||
swCollapseQuotes.setChecked(prefs.getBoolean("collapse_quotes", false));
|
||||
|
|
|
@ -357,7 +357,7 @@ public class HtmlHelper {
|
|||
SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(context);
|
||||
boolean compact = prefs.getBoolean("compact", false);
|
||||
int zoom = prefs.getInt("zoom", compact ? 0 : 1);
|
||||
boolean inline = prefs.getBoolean("inline_images", true);
|
||||
boolean inline = prefs.getBoolean("inline_images", false);
|
||||
|
||||
final int px = Helper.dp2pixels(context, (zoom + 1) * 24);
|
||||
|
||||
|
|
|
@ -301,7 +301,6 @@
|
|||
android:layout_width="0dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="12dp"
|
||||
android:checked="true"
|
||||
android:text="@string/title_advanced_images_inline"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
|
|
Loading…
Reference in a new issue