Set aspect ratio for thumbnails of followed tab to 1:1

This commit is contained in:
0xb00bface 2021-11-09 20:34:31 +01:00
parent cc2875911e
commit 8bd5412504
1 changed files with 1 additions and 1 deletions

View File

@ -21,7 +21,7 @@ public class CherryTvTabProvider implements TabProvider {
this.recorder = cherryTv.getRecorder();
followedTab = new CherryTvFollowedTab("Following", site);
followedTab.setImageAspectRatio(9.0 / 16.0);
followedTab.setImageAspectRatio(1);
followedTab.preserveAspectRatioProperty().set(false);
followedTab.setRecorder(recorder);
}