Revert "Show inline images by default"

This reverts commit c75059120c.
This commit is contained in:
M66B
2019-08-24 19:50:28 +02:00
parent c75059120c
commit 2a3cb60b82
5 changed files with 5 additions and 6 deletions

View File

@@ -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);