Set show notes direction to auto (#7517)

This matches what Android does automatically for most native text views.
This commit is contained in:
ebraminio 2024-11-24 23:22:51 +03:30 committed by GitHub
parent af1a568b01
commit 82f9d45343
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -100,6 +100,7 @@ public class ShownotesCleaner {
cleanCss(document);
document.head().appendElement("style").attr("type", "text/css").text(webviewStyle);
addTimecodes(document);
document.body().attr("dir", "auto");
return document.toString();
}