-
-
Notifications
You must be signed in to change notification settings - Fork 147
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix distorted TV episode posters. Add client-side progress bar and played indicator. #922
Changes from all commits
6b10927
d39ec5c
7bf4d8e
50f2068
e4e942f
dc33ccd
554bcd1
ced88a8
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,8 +2,15 @@ | |
<component name="TVListDetails" extends="Group"> | ||
<children> | ||
<LayoutGroup id="toplevel" layoutDirection="vert" itemSpacings="[40]"> | ||
<LayoutGroup id="main_group" layoutDirection="horiz" itemSpacings="[30]"> | ||
<Poster id="poster" width="350" height="300" /> | ||
<LayoutGroup id="main_group" layoutDirection="horiz" itemSpacings="[30]"> | ||
<Poster id="poster" width="350" height="300" loadDisplayMode="scaleToZoom"> | ||
<Rectangle id="playedIndicator" color="#00a4dcFF" width="60" height="46" visible="false" translation="[290, 0]"> | ||
<Label id="checkmark" width="60" height="42" font="font:SmallestBoldSystemFont" horizAlign="center" vertAlign="bottom" text="✓"/> | ||
</Rectangle> | ||
<Rectangle id="progressBackground" visible="false" color="0x00000098" width="350" height="16" translation="[0,286]"> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Can we make the height 8 to match the homepage bar height? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. At a height of 8, the row selector blocks a good chunk of the progress bar. Do we want to stick with this height, or try to move/resize the progress bar on selection? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
<Rectangle id="progressBar" color="#00a4dcFF" width="0" height="16" visible="false"/> | ||
</Rectangle> | ||
</Poster> | ||
<LayoutGroup id="text" layoutDirection="vert" itemSpacings="[15]"> | ||
<!-- Using poster of 1 length to get spacing. Not successful with adding translation to title --> | ||
<Poster id="null" height="1" /> | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let's bump up the font size on the check to 35.
Here's what it looks like.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is there a way to override font size here? Couldn't find a way to do that, so I've set it over in the TVListDetails.brs init funciton.