22.08.2017, 03:28
(21.08.2017, 07:25)cbrauweiler schrieb: The EXIT Button? That is style in the navit snaga skin. In Custom_Navit_1116.xml you can style the X Button for return to kodi.
Cbrauweiler,
Actually not true... or not true on my install I needed to modify the plugin.navigation/addon.py to make the button bigger... it seems the overlay is loaded there... I have to admit I don't know why but this worked.
Modified the Original values to
Code:
# Back button #Original 50 & 47,50,50
self.button_back=xbmcgui.ControlButton(self.w - 100, self.h - 94, 100, 100,
"",
'floor_buttonFO.png',
'floor_button.png',
0,
0)
self.addControl(self.button_back)
self.backImage = xbmcgui.ControlImage(self.w - 100, self.h - 94, 100, 100,
'icon_back_w.png')
self.addControl(self.backImage)
Final Product: