<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
</head>
<body bgcolor="#ffffff" text="#000000">
QColumnView steadfastly refuses to display a preview widget. Could
someone else try running this code snippet and see if it works for you?<br>
<br>
<code>import sys<br>
</code><code>from PyQt4 import QtCore, QtGui<br>
</code><code></code><br>
<code> app = QtGui.QApplication(sys.argv)<br>
model = QtGui.QFileSystemModel()<br>
model.setRootPath('/')<br>
view = QtGui.QColumnView()<br>
view.setModel(model)<br>
label = QtGui.QLabel('HELLO')<br>
view.setPreviewWidget(label)<br>
view.show()<br>
app.exec_()<br>
</code><br>
Unless I'm missing something, navigating to a file should show the
'HELLO' label in the right-most pane of the column view. Doesn't work
for me, the pane is blank. I've confirmed that the updatePreviewWidget
signal is being emitted.<br>
<br>
(Python 2.5.4, Qt 4.6.0, PyQt 4.6.2, X11)<br>
<br>
cheers,<br>
-Mark<br>
<pre class="moz-signature" cols="72">-- 
Mark Visser, Software Director
Lumi&egrave;re VFX
Email: <a class="moz-txt-link-abbreviated" href="mailto:markv@lumierevfx.com">markv@lumierevfx.com</a>
Phone: +1-514-316-1080 x3030
</pre>
</body>
</html>