Hallo Zusammen,
ich habe ein 5" Waveshare Touchscreen zusammen mit einen Pi3 und Raspbian am Laufen. Touch funktioniert soweit. Und Kodi funtkioniert der Touchscreen nach anfänglichen Problemen ebenfalls.
Nur habe ich nun das Problem das ich immer einen Doppelclick machen muss wenn ich ein Menü auswähle. Bei einen Touch natürlich nicht so toll. Weiß jemand wie man das auf single Click/Touch umstellt?
Google kennt zwar das Problem, aber eine Lösung dazu habe ich nirgends gefunden
Bin dann doch noch fündig geworden.
/home/pi/.kodi/userdata/keymaps
XML: mouse.xml
<?xml version="1.0" encoding="UTF-8"?>
<!-- This file contains the mapping of mouse keys to actions within Kodi. -->
<!-- -->
<!-- The format is: -->
<!-- <window> -->
<!-- <device> -->
<!-- <button>action</button> -->
<!-- </device> -->
<!-- </window> -->
<!-- -->
<!-- The <global> section is a fall through - they will only be used if the button is -->
<!-- not used in the current window's section. -->
<!-- -->
<!-- Actions can be built-in functions. -->
<!-- eg <middleclick>ActivateWindow(Music)</middleclick> -->
<!-- would automatically go to Music on the press of the middle mouse button. -->
<!-- -->
<!-- -->
<!-- An empty action removes the corresponding mapping from default and parent keymaps. -->
<!-- This is different from a "noop" action, which disables a button. -->
<!-- -->
<!-- Button Ids: -->
<!-- 0: left -->
<!-- 1: right -->
<!-- 2: middle -->
<!-- 3/4/5/6: extra -->
<!-- -->
<!-- More documentation on keymaps can be found on http://kodi.wiki/view/keymaps -->
<[definition='3','0']keymap[/definition]>
<global>
<mouse>
<leftclick>leftclick</leftclick>
<rightclick>rightclick</rightclick>
<middleclick>middleclick</middleclick>
<doubleclick id="0">noop</doubleclick>
<longclick id="0">contextmenu</longclick>
<wheeldown>wheeldown</wheeldown>
<wheelup>wheelup</wheelup>
<mousedrag>mousedrag</mousedrag>
<mousedragend>leftclick</mousedragend>
<mousemove>noop</mousemove>
</mouse>
</global>
<SlideShow>
<mouse>
<leftclick>Pause</leftclick>
<rightclick>PreviousMenu</rightclick>
<wheelup>PreviousPicture</wheelup>
<wheeldown>NextPicture</wheeldown>
</mouse>
</SlideShow>
<FullscreenVideo>
<mouse>
<rightclick>Info</rightclick>
</mouse>
</FullscreenVideo>
</[definition='3','0']keymap[/definition]>
Alles anzeigen