Skip to content

Commit

Permalink
Disable channel icon scan when icon path is empty
Browse files Browse the repository at this point in the history
XBMC checks the icon path and terminates the scan early if no path is set. This commit causes the setting to respect that.
  • Loading branch information
garbear committed Oct 7, 2013
1 parent 494c67a commit 24cee42
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion system/settings/settings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -838,7 +838,12 @@
<setting id="pvrmenu.searchicons" type="action" label="19167" help="36217">
<level>1</level>
<dependencies>
<dependency type="enable" setting="pvrmanager.enabled">true</dependency>
<dependency type="enable">
<and>
<condition setting="pvrmanager.enabled" operator="is">true</condition>
<condition setting="pvrmenu.iconpath" operator="!is"></condition>
</and>
</dependency>
</dependencies>
</setting>
</group>
Expand Down

0 comments on commit 24cee42

Please sign in to comment.