<?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[QListView ignoring ScrollPerPixel on Sierra, High Sierra (Qt-5.12.0)]]></title><description><![CDATA[<p dir="auto">Hi there!</p>
<p dir="auto">This simple pyqt example demonstrates the problem:</p>
<pre><code>import time

app = QApplication(sys.argv)

w = QListView()
m = QStringListModel()
m.setStringList([str(time.time()) for i in range(1000)])
w.setModel(m)
w.setVerticalScrollMode(QAbstractItemView.ScrollPerPixel)
w.show()

app.exec_()
</code></pre>
]]></description><link>https://forum.qt.io/topic/99791/qlistview-ignoring-scrollperpixel-on-sierra-high-sierra-qt-5-12-0</link><generator>RSS for Node</generator><lastBuildDate>Sun, 19 Apr 2026 19:07:33 GMT</lastBuildDate><atom:link href="https://forum.qt.io/topic/99791.rss" rel="self" type="application/rss+xml"/><pubDate>Sun, 17 Feb 2019 18:46:39 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to QListView ignoring ScrollPerPixel on Sierra, High Sierra (Qt-5.12.0) on Fri, 22 Feb 2019 00:05:02 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/patrickkidd">@<bdi>patrickkidd</bdi></a> Turns out this is only doing this when macOS is a parallels guest OS, even for Mojave. Strange.</p>
<p dir="auto">I wonder what this could be?</p>
]]></description><link>https://forum.qt.io/post/513189</link><guid isPermaLink="true">https://forum.qt.io/post/513189</guid><dc:creator><![CDATA[patrickkidd]]></dc:creator><pubDate>Fri, 22 Feb 2019 00:05:02 GMT</pubDate></item><item><title><![CDATA[Reply to QListView ignoring ScrollPerPixel on Sierra, High Sierra (Qt-5.12.0) on Thu, 21 Feb 2019 22:29:44 GMT]]></title><description><![CDATA[<p dir="auto">It looks like all QScrollAreas ignore ScrollPerPixel on Sierra. How is this possible?</p>
]]></description><link>https://forum.qt.io/post/513178</link><guid isPermaLink="true">https://forum.qt.io/post/513178</guid><dc:creator><![CDATA[patrickkidd]]></dc:creator><pubDate>Thu, 21 Feb 2019 22:29:44 GMT</pubDate></item><item><title><![CDATA[Reply to QListView ignoring ScrollPerPixel on Sierra, High Sierra (Qt-5.12.0) on Sun, 17 Feb 2019 19:46:54 GMT]]></title><description><![CDATA[<p dir="auto">gotcha.  not sure about MAC compatibility.</p>
]]></description><link>https://forum.qt.io/post/512059</link><guid isPermaLink="true">https://forum.qt.io/post/512059</guid><dc:creator><![CDATA[Kent-Dorfman]]></dc:creator><pubDate>Sun, 17 Feb 2019 19:46:54 GMT</pubDate></item><item><title><![CDATA[Reply to QListView ignoring ScrollPerPixel on Sierra, High Sierra (Qt-5.12.0) on Sun, 17 Feb 2019 19:42:54 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/kent-dorfman">@<bdi>Kent-Dorfman</bdi></a> You are running linux. The report is that it doesn't work on Sierra, High Sierra. It works fine on Mojave, for example.</p>
]]></description><link>https://forum.qt.io/post/512058</link><guid isPermaLink="true">https://forum.qt.io/post/512058</guid><dc:creator><![CDATA[patrickkidd]]></dc:creator><pubDate>Sun, 17 Feb 2019 19:42:54 GMT</pubDate></item><item><title><![CDATA[Reply to QListView ignoring ScrollPerPixel on Sierra, High Sierra (Qt-5.12.0) on Sun, 17 Feb 2019 19:41:40 GMT]]></title><description><![CDATA[<p dir="auto">at least on 5.11 partial (pixel specific) scrolling does seem to work.</p>
<p dir="auto">just ran it and behaved as expected.</p>
<p dir="auto">Fedora29 linux<br />
Qt 5.11</p>
]]></description><link>https://forum.qt.io/post/512057</link><guid isPermaLink="true">https://forum.qt.io/post/512057</guid><dc:creator><![CDATA[Kent-Dorfman]]></dc:creator><pubDate>Sun, 17 Feb 2019 19:41:40 GMT</pubDate></item><item><title><![CDATA[Reply to QListView ignoring ScrollPerPixel on Sierra, High Sierra (Qt-5.12.0) on Sun, 17 Feb 2019 19:36:48 GMT]]></title><description><![CDATA[<p dir="auto">Thank you. Here is all of it:</p>
<pre><code>import sys, time

from PyQt5.QtCore import *
from PyQt5.QtGui import *
from PyQt5.QtWidgets import *

app = QApplication(sys.argv)

w = QListView()
m = QStringListModel()
m.setStringList([str(time.time()) for i in range(1000)])
w.setModel(m)
w.setVerticalScrollMode(QAbstractItemView.ScrollPerPixel)
w.show()

app.exec_()
</code></pre>
]]></description><link>https://forum.qt.io/post/512056</link><guid isPermaLink="true">https://forum.qt.io/post/512056</guid><dc:creator><![CDATA[patrickkidd]]></dc:creator><pubDate>Sun, 17 Feb 2019 19:36:48 GMT</pubDate></item><item><title><![CDATA[Reply to QListView ignoring ScrollPerPixel on Sierra, High Sierra (Qt-5.12.0) on Sun, 17 Feb 2019 19:35:19 GMT]]></title><description><![CDATA[<p dir="auto">No it doesn't.  Where are your imports for the Qt framework?  I've become a lot more demanding lately of examples incuding the necessary imports, instead of assuming folks know where all the components come from.  It saves the respondent time, so think of it as a courtesy.</p>
<p dir="auto">TIA</p>
]]></description><link>https://forum.qt.io/post/512055</link><guid isPermaLink="true">https://forum.qt.io/post/512055</guid><dc:creator><![CDATA[Kent-Dorfman]]></dc:creator><pubDate>Sun, 17 Feb 2019 19:35:19 GMT</pubDate></item></channel></rss>