From 5327ece76901e69ba033c5a34dea48de7db905d5 Mon Sep 17 00:00:00 2001 From: Joshua Goins Date: Mon, 26 May 2025 01:08:46 +0200 Subject: [PATCH] Fix space switching on mobile We forgot to connect to onTapped on the touchscreen-specific TapHandler. BUG: 504166 (cherry picked from commit 5c8ba7e29ee8620eaeaa7e039bb7d576704d8dc6) --- src/qml/AvatarTabButton.qml | 1 + 1 file changed, 1 insertion(+) diff --git a/src/qml/AvatarTabButton.qml b/src/qml/AvatarTabButton.qml index 12bfcc79a..31b76a9b1 100644 --- a/src/qml/AvatarTabButton.qml +++ b/src/qml/AvatarTabButton.qml @@ -48,6 +48,7 @@ Delegates.RoundedItemDelegate { TapHandler { acceptedDevices: PointerDevice.TouchScreen + onTapped: root.selected() onLongPressed: root.contextMenuRequested() }