Set thumbnail aspect ration to 9/16 for MVLive

This commit is contained in:
0xb00bface 2022-05-07 18:50:53 +02:00
parent 21f75fc187
commit 0ad935474a
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@ public class MVLiveTabProvider extends AbstractTabProvider {
var updateService = new MVLiveUpdateService((MVLive) site);
var tab = new ThumbOverviewTab(title, updateService, site);
tab.setRecorder(site.getRecorder());
tab.setImageAspectRatio(1);
tab.setImageAspectRatio(16.0 / 9.0);
return tab;
}