Index: sources/gui/qml/components/TouchRect.qml =================================================================== diff -u -rddd2197b24223c540a016e3256f97082f817c088 -r477c26a4e1dcbdf7ad0f29ae7a1df4738d4dcce2 --- sources/gui/qml/components/TouchRect.qml (.../TouchRect.qml) (revision ddd2197b24223c540a016e3256f97082f817c088) +++ sources/gui/qml/components/TouchRect.qml (.../TouchRect.qml) (revision 477c26a4e1dcbdf7ad0f29ae7a1df4738d4dcce2) @@ -135,7 +135,7 @@ enabled : _root.touchable anchors.fill : parent anchors.margins : touchExpanding * -1 - onClicked : { if ( ! _private.clickDebouncing ) { onMouseEventLog("Clicked ") ; _root.clicked (); clickDebounceTimer.start(); } } + onClicked : { if ( ! _private.clickDebouncing ) { onMouseEventLog("Clicked ") ; _root.clicked (); clickDebounceTimer.start(); } focus = true; } onPressed : { if ( ! _private.pressDebouncing ) { onMouseEventLog("Pressed ") ; _private.pressed = true ; _root.pressed (); pressDebounceTimer.start(); } } onReleased : { if ( _private.pressed ) { onMouseEventLog("Released ") ; _private.pressed = false; _root.released (); pressDebounceTimer.start(); } } onPressAndHold : { onMouseEventLog("PressAndHold ") ; _root.pressAndHold(); }