Hi,
Under Kodi 16.1 , I have modified DialogButtonMenu.xml on Confluence skin to show the Exit button only when a certain profile is logged on.
I could make it work by using deprecated StringCompare function but not the String.IsEqual.
Working tag
Non working tag
Is this normal behaviour ?
Many thanks,
--
Issa
Under Kodi 16.1 , I have modified DialogButtonMenu.xml on Confluence skin to show the Exit button only when a certain profile is logged on.
I could make it work by using deprecated StringCompare function but not the String.IsEqual.
Working tag
Code:
<visible>StringCompare(System.ProfileName,myprofilename)</visible>
Non working tag
Code:
<visible>String.IsEqual(System.ProfileName,myprofilename)</visible>
Is this normal behaviour ?
Many thanks,
--
Issa