Is there a better way of creating a contextMenu (a small menu when you right click) inside a QTreeWidget<br>than setting the setContextMenuPolicy?&nbsp; This is what I currently do:<br><br>self.treeView = QTreeWidget()<br>self.treeView.setContextMenuPolicy
(Qt.CustomContextMenu)<br>self.connect(self.treeView,SIGNAL(&#39;customContextMenuRequested(QPoint)&#39;),self.newContext)<br><br>But, the problem I&#39;m having is that the right click to bring up the menu, also changes the selection.
<br>How can I tell the tree to ignore right clicks but still bring up the contextmenu?&nbsp; Oh, and as a side<br>question.&nbsp; How can I get a list of the QTreeWidgetItems that make up the tree?&nbsp; I saw items() but I<br>didn&#39;t quite understand how to set the QMimeData type (I&#39;m sorry, I&#39;m a bit new to QT :( )&nbsp; Thank you!
<br><br>B<br>