1
0
Fork 0
mirror of https://github.com/M66B/FairEmail.git synced 2024-12-30 19:56:10 +00:00

Switch overview mode

This commit is contained in:
M66B 2022-01-29 17:39:54 +01:00
parent bc7287e731
commit e5f0151082

View file

@ -3819,6 +3819,8 @@ public class AdapterMessage extends RecyclerView.Adapter<AdapterMessage.ViewHold
properties.setSize(message.id, null);
properties.setHeight(message.id, null);
properties.setPosition(message.id, null);
if ("overview_mode".equals(key) && wvBody instanceof WebView)
((WebView) wvBody).getSettings().setLoadWithOverviewMode(enabled);
bindBody(message, false);
return true;
}