Skip to content

Commit

Permalink
Merge pull request xbmc#24174 from CrystalP/estuary-desc-seekbar
Browse files Browse the repository at this point in the history
[Estuary] Adjust plot height in video fullscreen info
  • Loading branch information
CrystalP authored Dec 4, 2023
2 parents fb8c18c + 64b0bcf commit 4de822d
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion addons/skin.estuary/xml/DialogSeekBar.xml
Original file line number Diff line number Diff line change
Expand Up @@ -408,16 +408,24 @@
<align>left</align>
<orientation>vertical</orientation>
<itemgap>10</itemgap>
<control type="textbox">
<height>294</height>
<label fallback="10005">$INFO[VideoPlayer.Tagline,[B],[/B][CR]]$INFO[VideoPlayer.Plot]</label>
<align>left</align>
<autoscroll delay="5000" repeat="7500" time="5000"></autoscroll>
<visible>Integer.IsGreaterOrEqual(Playlist.Position(video), Playlist.Length(video))</visible>
</control>
<control type="textbox">
<height>250</height>
<label fallback="10005">$INFO[VideoPlayer.Tagline,[B],[/B][CR]]$INFO[VideoPlayer.Plot]</label>
<align>left</align>
<autoscroll delay="5000" repeat="7500" time="5000"></autoscroll>
<visible>Integer.IsLess(Playlist.Position(video), Playlist.Length(video))</visible>
</control>
<control type="label">
<height>50</height>
<label>$VAR[OSDNextLabelVar]</label>
<visible>Integer.IsGreater(Playlist.Length(video),1)</visible>
<visible>Integer.IsLess(Playlist.Position(video), Playlist.Length(video))</visible>
</control>
</control>
</control>
Expand Down

0 comments on commit 4de822d

Please sign in to comment.