<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[Qt6.8 QML ListView Bug: Cannot click item in the list while scrolling ListView]]></title><description><![CDATA[<h2>Issue</h2>
<ul>
<li>
<p dir="auto">When I drag a list with the mouse or scroll through a list with the scroll wheel, I cannot immediately click on the list items and usually need to wait about 0.5 seconds for the items in the list to accept the left mouse button event.</p>
</li>
<li>
<p dir="auto">I think this is a bug. When I scroll through the list, the mouse click event for a short period of time is still judged as scrolling. I tried adjusting the 'pressDelay' property, but it still hasn't eased.</p>
</li>
<li>
<p dir="auto">My current solution is to disable dragging the list with the mouse or use Qt6.7 version</p>
</li>
</ul>
<h2>Qt Version</h2>
<p dir="auto">This issue occurred between Qt6.8 ~ Qt6.10, but it did not appear in Qt6.7.</p>
<h2>Simple Example</h2>
<pre><code>import QtQuick
import QtQuick.Controls

//disable mouse events to prevent the list from scrolling due to mouse clicks
//acceptedButtons: Qt.NoButton
ListView{
    anchors.fill: parent
    //There are enough items to require scrolling through the list
    model:ListModel{}
    ScrollBar.vertical: ScrollBar {}   
    delegate:Rectangle{
        width: ListView.view.width
        height: 40
        border.width: 1
        border.color: "blue"
        MouseArea {
            anchors.fill: parent
            onClicked:{
                console.log("Item onClicked")
            }
        }
    }
}
</code></pre>
]]></description><link>https://forum.qt.io/topic/163738/qt6.8-qml-listview-bug-cannot-click-item-in-the-list-while-scrolling-listview</link><generator>RSS for Node</generator><lastBuildDate>Sat, 11 Apr 2026 10:15:47 GMT</lastBuildDate><atom:link href="https://forum.qt.io/topic/163738.rss" rel="self" type="application/rss+xml"/><pubDate>Mon, 17 Nov 2025 13:33:01 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Qt6.8 QML ListView Bug: Cannot click item in the list while scrolling ListView on Fri, 21 Nov 2025 09:14:55 GMT]]></title><description><![CDATA[<p dir="auto">This bug has been fixed in Qt6.10.1<br />
<a href="https://bugreports.qt.io/browse/QTBUG-135931" target="_blank" rel="noopener noreferrer nofollow ugc">https://bugreports.qt.io/browse/QTBUG-135931</a><br />
Reg[6.8.2-6.9.0]ListView containing AbstractSeries does not scroll on Drag</p>
]]></description><link>https://forum.qt.io/post/833837</link><guid isPermaLink="true">https://forum.qt.io/post/833837</guid><dc:creator><![CDATA[Janmean]]></dc:creator><pubDate>Fri, 21 Nov 2025 09:14:55 GMT</pubDate></item></channel></rss>