Explorar el Código

Merge pull request #727 from cvium/change_default_aspect

Change default aspect ratio to 2/3 from 0
Andrew Rabert hace 6 años
padre
commit
50279be686
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      MediaBrowser.Controller/Entities/BaseItem.cs

+ 1 - 1
MediaBrowser.Controller/Entities/BaseItem.cs

@@ -1518,7 +1518,7 @@ namespace MediaBrowser.Controller.Entities
 
         public virtual double GetDefaultPrimaryImageAspectRatio()
         {
-            return 0;
+            return 2.0 / 3;
         }
 
         public virtual string CreatePresentationUniqueKey()