Fix space switching on mobile

We forgot to connect to onTapped on the touchscreen-specific TapHandler.

BUG: 504166

(cherry picked from commit 5c8ba7e29e)
This commit is contained in:
Joshua Goins
2025-05-26 01:08:46 +02:00
parent 58658d1aa2
commit 5327ece769

View File

@@ -48,6 +48,7 @@ Delegates.RoundedItemDelegate {
TapHandler {
acceptedDevices: PointerDevice.TouchScreen
onTapped: root.selected()
onLongPressed: root.contextMenuRequested()
}