Hi everyone,<br><br>in QVTKRenderWindowInteractor class, on line 216 there is the ShowCursor method<br><br> <span style="font-family: courier new,monospace;">    def ShowCursor(self):</span><br style="font-family: courier new,monospace;">
<span style="font-family: courier new,monospace;">         &quot;&quot;&quot;Shows the cursor.&quot;&quot;&quot;</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">         vtk_cursor = self._Iren.GetRenderWindow().GetCurrentCursor()</span><br style="font-family: courier new,monospace;">
<span style="font-family: courier new,monospace;">         qt_cursor = self._CURSOR_MAP.get(vtk_cursor, QtCore.Qt.ArrowCursor)</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">        self.setCursor(cursor)</span><br>
<br>I haven&#39;t run in any problems with it, but as I am writing an 
applications that embeds VTK in PyQt I was trying to gain better 
understanding of vtk internals by broswing its source code. As it is now, object &quot;cursor&quot; is not defined anywhere. Shouldn&#39;t the last line be something like this instead:<br><br><span style="font-family: courier new,monospace;">        self.setCursor(qt_cursor)</span><br>
<br>Should I open a bug ticket?<br><br>with regards, <br>Panos<br><br>