diff options
author | Jezz_X <jezzx2@gmail.com> | 2012-10-14 20:43:24 +1100 |
---|---|---|
committer | Jezz_X <jezzx2@gmail.com> | 2012-10-14 20:43:52 +1100 |
commit | faa10095063d97f6ccd651bca0f675e49580bb20 (patch) | |
tree | 9dc916a9140969891234149227eabeb5baed4da5 /addons/skin.confluence/720p | |
parent | 13fc05f77c73f906bb4130a7ad5f4e773f2f3079 (diff) |
Fixed: [Confluence] posters we missing in library view due to bad visible condition. fixes #13406
Diffstat (limited to 'addons/skin.confluence/720p')
-rw-r--r-- | addons/skin.confluence/720p/ViewsVideoLibrary.xml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/addons/skin.confluence/720p/ViewsVideoLibrary.xml b/addons/skin.confluence/720p/ViewsVideoLibrary.xml index d122022f7c..1760f758fe 100644 --- a/addons/skin.confluence/720p/ViewsVideoLibrary.xml +++ b/addons/skin.confluence/720p/ViewsVideoLibrary.xml @@ -63,7 +63,7 @@ <texture background="true">$INFO[ListItem.Icon]</texture> <animation reversible="false" effect="zoom" start="-2,36,222,318" end="-28,0,284,390" time="200">focus</animation> <animation reversible="false" effect="zoom" end="-2,36,222,318" start="-28,0,284,390" time="200">unfocus</animation> - <visible>!IsEmpty(ListItem.Art(poster))</visible> + <visible>IsEmpty(ListItem.Art(poster))</visible> </control> <control type="image"> <posx>-2</posx> @@ -76,7 +76,7 @@ <texture background="true">$INFO[ListItem.Art(poster)]</texture> <animation reversible="false" effect="zoom" start="-2,36,222,318" end="-28,0,284,390" time="200">focus</animation> <animation reversible="false" effect="zoom" end="-2,36,222,318" start="-28,0,284,390" time="200">unfocus</animation> - <visible>IsEmpty(ListItem.Art(poster))</visible> + <visible>!IsEmpty(ListItem.Art(poster))</visible> </control> <control type="image"> <posx>6</posx> |