2018-07-23, 07:27
(2018-07-22, 05:50)emnaudin Wrote: Hey Jurial, I know this is a Kodi related issue but was wondering if you still could help me. (happy to edit files, been messing around but had no luck.)
From widgets I prefer movies to show the Info Dialog, but TV Shows would be better to go straight to library view.
Now, is there a way to force the library view on TV Shows so it jumps straight to view the seasons / episodes (even with default action set to show info)
Or...
Force the Info Dialog to show only on movie widgets when default action is set to play.
I've read somewhere that this was achievable by creating a new profile within kodi, duplicating the skin with the settings set to play on one profile and info on the other. Didn't work for me though.
PS. I'll be running android. Sold my atv4k for a shield
You can do the latter, but not the former - i.e. you can't force play when default action is info, but you can force info when default action is play.
To force info on a click, you need to override the onclick action in the widget list container.
Open Includes_Widgets.xml in a text editor and search for the following line:
Code:
<control type="list" id="$PARAM[id]">
This line is the start of the widget list container.
On a new line directly underneath, add the following:
Code:
<onclick condition="String.IsEqual(Container($PARAM[id]).ListItem.DBType,movie)">Action(Info)</onclick>
e.g. It should now look like this:
Code:
<control type="list" id="$PARAM[id]">
<onclick condition="String.IsEqual(Container($PARAM[id]).ListItem.DBType,movie)">Action(Info)</onclick>
It doesn't work the otherway around - i.e. Action(Play) - because the play action doubles as a click/select, so you basically end up with an infinite loop.