xbmc-master-theme-Confluence: add FM patch

Signed-off-by: Stephan Raue <stephan@openelec.tv>
This commit is contained in:
Stephan Raue 2014-07-25 07:27:45 +02:00
parent d7339e29b2
commit 943fc1f809

View File

@ -0,0 +1,40 @@
From 8f5e61d2c7ccd99622568039165ab2d620a58b97 Mon Sep 17 00:00:00 2001
From: Rainer Hochecker <fernetmenta@online.de>
Date: Mon, 21 Jul 2014 08:45:51 +0200
Subject: [PATCH 25/28] skin confluence: change channel group by clicking on
channels or guide
---
720p/IncludesPVR.xml | 10 ++++++----
1 file changed, 6 insertions(+), 4 deletions(-)
diff --git a/720p/IncludesPVR.xml b/720p/IncludesPVR.xml
index b6d9700..1b31fba 100644
--- a/720p/IncludesPVR.xml
+++ b/720p/IncludesPVR.xml
@@ -101,8 +101,9 @@
<textwidth>235</textwidth>
<include>ButtonCommonValues</include>
<label>19019</label>
- <onclick condition="IsEmpty(Window.Property(IsRadio))">ActivateWindow(TVChannels)</onclick>
- <onclick condition="!IsEmpty(Window.Property(IsRadio))">ActivateWindow(RadioChannels)</onclick>
+ <onclick condition="Window.IsActive(TVChannels) | Window.IsActive(RadioChannels)">NextChannelGroup</onclick>
+ <onclick condition="!Window.IsActive(TVChannels) + IsEmpty(Window.Property(IsRadio))">ActivateWindow(TVChannels)</onclick>
+ <onclick condition="!Window.IsActive(RadioChannels) + !IsEmpty(Window.Property(IsRadio))">ActivateWindow(RadioChannels)</onclick>
</control>
<control type="button" id="101">
<description>TV Guide</description>
@@ -111,8 +112,9 @@
<textwidth>235</textwidth>
<include>ButtonCommonValues</include>
<label>22020</label>
- <onclick condition="IsEmpty(Window.Property(IsRadio))">ActivateWindow(TVGuide)</onclick>
- <onclick condition="!IsEmpty(Window.Property(IsRadio))">ActivateWindow(RadioGuide)</onclick>
+ <onclick condition="Window.IsActive(TVGuide) | Window.IsActive(RadioGuide)">NextChannelGroup</onclick>
+ <onclick condition="!Window.IsActive(TVGuide) + IsEmpty(Window.Property(IsRadio))">ActivateWindow(TVGuide)</onclick>
+ <onclick condition="!Window.IsActive(RadioGuide) + !IsEmpty(Window.Property(IsRadio))">ActivateWindow(RadioGuide)</onclick>
</control>
<control type="button" id="102">
<description>Recordings</description>
--
1.9.3