Show inline images by default

This commit is contained in:
M66B
2019-08-24 19:47:11 +02:00
parent bb1671abfd
commit c75059120c
5 changed files with 6 additions and 5 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", false);
boolean inline = prefs.getBoolean("inline_images", true);
final int px = Helper.dp2pixels(context, (zoom + 1) * 24);