diff --git a/modules/gui/qt/network/qml/BrowseHomeDisplay.qml b/modules/gui/qt/network/qml/BrowseHomeDisplay.qml index ffc30e42e1d0adeda283756761306c69330ec214..db80f87cee71e00ea0f796d8b37227683524ac8a 100644 --- a/modules/gui/qt/network/qml/BrowseHomeDisplay.qml +++ b/modules/gui/qt/network/qml/BrowseHomeDisplay.qml @@ -149,6 +149,25 @@ FocusScope { Navigation.parentItem: root + Component.onCompleted: { + // Flickable filters child mouse events for flicking (even when + // the delegate is grabbed). However, this is not a useful + // feature for non-touch cases, so disable it here and enable + // it if touch is detected through the hover handler: + MainCtx.setFiltersChildMouseEvents(this, false) + } + + HoverHandler { + acceptedDevices: PointerDevice.TouchScreen + + onHoveredChanged: { + if (hovered) + MainCtx.setFiltersChildMouseEvents(flickable, true) + else + MainCtx.setFiltersChildMouseEvents(flickable, false) + } + } + Widgets.NavigableCol { id: column