diff options
author | jezz_x <jezz_x@svn> | 2010-12-28 21:24:57 +0000 |
---|---|---|
committer | jezz_x <jezz_x@svn> | 2010-12-28 21:24:57 +0000 |
commit | fa3af0cd6537975cedbeea768e11e496ec471b4f (patch) | |
tree | 88fd5bc500ced598ac0adf65118ffb394d3bf04a /addons/skin.confluence | |
parent | 029b2a94a5942293021b9e0909c69b98196adff3 (diff) |
Fixed: [Confluence] turns out recently added script was always being run if you have "update library at startup" enabled if you liked it or not, and not if you did Ticket #10955
git-svn-id: https://xbmc.svn.sourceforge.net/svnroot/xbmc/trunk@35709 568bbfeb-2a22-0410-94d2-cc84cf5bfa90
Diffstat (limited to 'addons/skin.confluence')
-rw-r--r-- | addons/skin.confluence/720p/Home.xml | 6 | ||||
-rw-r--r-- | addons/skin.confluence/720p/Startup.xml | 4 | ||||
-rw-r--r-- | addons/skin.confluence/720p/custom_SkinSetting_1111.xml | 4 |
3 files changed, 7 insertions, 7 deletions
diff --git a/addons/skin.confluence/720p/Home.xml b/addons/skin.confluence/720p/Home.xml index 44c394abf9..1c4dea34c3 100644 --- a/addons/skin.confluence/720p/Home.xml +++ b/addons/skin.confluence/720p/Home.xml @@ -26,7 +26,7 @@ <onfocus>SetFocus(9000)</onfocus>
<texturenofocus>-</texturenofocus>
<texturefocus>-</texturefocus>
- <visible>Skin.HasSetting(homepageHideRecentlyAdded)</visible>
+ <visible>Skin.HasSetting(homepageShowRecentlyAdded)</visible>
</control>
<control type="button" id="8999">
<description>Don't run Recently added</description>
@@ -39,7 +39,7 @@ <onfocus>SetFocus(9000)</onfocus>
<texturenofocus>-</texturenofocus>
<texturefocus>-</texturefocus>
- <visible>!Skin.HasSetting(homepageHideRecentlyAdded)</visible>
+ <visible>!Skin.HasSetting(homepageShowRecentlyAdded)</visible>
</control>
<!-- Music Info -->
<control type="group">
@@ -360,7 +360,7 @@ </control>
</control>
</control>
- <include condition="Skin.HasSetting(homepageHideRecentlyAdded)">HomeRecentlyAddedInfo</include>
+ <include condition="Skin.HasSetting(homepageShowRecentlyAdded)">HomeRecentlyAddedInfo</include>
<control type="group">
<animation effect="slide" end="-400,0" time="500" tween="quadratic" easing="out">WindowClose</animation>
<animation effect="slide" start="-400,0" time="500" tween="quadratic" easing="out">WindowOpen</animation>
diff --git a/addons/skin.confluence/720p/Startup.xml b/addons/skin.confluence/720p/Startup.xml index 760a568e99..f446c2e619 100644 --- a/addons/skin.confluence/720p/Startup.xml +++ b/addons/skin.confluence/720p/Startup.xml @@ -8,14 +8,14 @@ <onfocus>SetFocus(10)</onfocus>
<texturenofocus>-</texturenofocus>
<texturefocus>-</texturefocus>
- <visible>system.getbool(videolibrary.updateonstartup) + !Skin.HasSetting(homepageHideRecentlyAdded)</visible>
+ <visible>system.getbool(videolibrary.updateonstartup) + Skin.HasSetting(homepageShowRecentlyAdded)</visible>
</control>
<control type="button" id="9">
<description>Don't run anything is scan on startup is Disabled and jump to the startup playlist</description>
<onfocus>SetFocus(10)</onfocus>
<texturenofocus>-</texturenofocus>
<texturefocus>-</texturefocus>
- <visible>!system.getbool(videolibrary.updateonstartup) | Skin.HasSetting(homepageHideRecentlyAdded)</visible>
+ <visible>!system.getbool(videolibrary.updateonstartup) | !Skin.HasSetting(homepageShowRecentlyAdded)</visible>
</control>
<control type="button" id="10">
diff --git a/addons/skin.confluence/720p/custom_SkinSetting_1111.xml b/addons/skin.confluence/720p/custom_SkinSetting_1111.xml index 8db4c17056..523145cc99 100644 --- a/addons/skin.confluence/720p/custom_SkinSetting_1111.xml +++ b/addons/skin.confluence/720p/custom_SkinSetting_1111.xml @@ -433,8 +433,8 @@ <textcolor>grey2</textcolor>
<focusedcolor>white</focusedcolor>
<label>31117</label>
- <onclick>Skin.ToggleSetting(homepageHideRecentlyAdded)</onclick>
- <selected>Skin.HasSetting(homepageHideRecentlyAdded)</selected>
+ <onclick>Skin.ToggleSetting(homepageShowRecentlyAdded)</onclick>
+ <selected>Skin.HasSetting(homepageShowRecentlyAdded)</selected>
<texturefocus>MenuItemFO.png</texturefocus>
<texturenofocus>MenuItemNF.png</texturenofocus>
</control>
|