Skip to content

Commit

Permalink
Fixed: [Confluence] turns out recently added script was always being …
Browse files Browse the repository at this point in the history
…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/addons/skin.confluence@35709 568bbfeb-2a22-0410-94d2-cc84cf5bfa90
  • Loading branch information
jezz_x committed Dec 28, 2010
1 parent 439676c commit 8e7349a
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions 720p/Home.xml
Expand Up @@ -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>
Expand All @@ -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">
Expand Down Expand Up @@ -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>
Expand Down
4 changes: 2 additions & 2 deletions 720p/Startup.xml
Expand Up @@ -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">
Expand Down
4 changes: 2 additions & 2 deletions 720p/custom_SkinSetting_1111.xml
Expand Up @@ -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>
Expand Down

0 comments on commit 8e7349a

Please sign in to comment.