diff --git a/dashboard-ui/css/chromecast.css b/dashboard-ui/css/chromecast.css index 582bdc08f1..2cb50df448 100644 --- a/dashboard-ui/css/chromecast.css +++ b/dashboard-ui/css/chromecast.css @@ -30,7 +30,7 @@ margin-right: .5em; height: 100%; position: relative; - top: -19px; + top: -18px; font-family: "Open Sans"; } diff --git a/dashboard-ui/scripts/itemdetailpage.js b/dashboard-ui/scripts/itemdetailpage.js index 31dcf19c08..6d869617ad 100644 --- a/dashboard-ui/scripts/itemdetailpage.js +++ b/dashboard-ui/scripts/itemdetailpage.js @@ -1178,6 +1178,10 @@ } if (type == "Video") { + if (stream.IsAnamorphic != null) { + attributes.push(createAttribute("Anamorphic", (stream.IsAnamorphic ? 'Yes' : 'No'))); + } + attributes.push(createAttribute("Interlaced", (stream.IsInterlaced ? 'Yes' : 'No'))); }