diff options
author | CrystalP <crystalp@kodi.tv> | 2023-12-02 16:42:05 -0500 |
---|---|---|
committer | CrystalP <crystalp@kodi.tv> | 2023-12-03 17:58:29 -0500 |
commit | 5645e1b188f832e64dfbe13d1b2a77ed56efd250 (patch) | |
tree | 6f374ae9b397a8a09179a470cdce42723362beb1 | |
parent | 13489ece870cfe43c60a430bb9d06940516c2f10 (diff) |
[Estuary] fullscreen info: expand the plot textbox for item by item playback
Instead of leaving a blank when playing single files, use the space used by the label displaying the next item to add an extra line to the plot.
-rw-r--r-- | addons/skin.estuary/xml/DialogSeekBar.xml | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/addons/skin.estuary/xml/DialogSeekBar.xml b/addons/skin.estuary/xml/DialogSeekBar.xml index 7fa3a1ec12..4762e22ac1 100644 --- a/addons/skin.estuary/xml/DialogSeekBar.xml +++ b/addons/skin.estuary/xml/DialogSeekBar.xml @@ -409,10 +409,18 @@ <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.IsLessOrEqual(Playlist.Length(video),1)</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.IsGreater(Playlist.Length(video),1)</visible> </control> <control type="label"> <height>50</height> |