Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
History dialog signals: item change instead of click.
git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@307 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d
  • Loading branch information
cpolymeris@gmail.com committed Jul 22, 2012
1 parent 2a1a2ef commit 6ddcf98
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sextante/gui/HistoryDialog.py
Expand Up @@ -18,7 +18,7 @@ def setupUi(self):
self.tree.setHeaderHidden(True)
self.tree.doubleClicked.connect(self.executeAlgorithm)
self.verticalLayout.addWidget(self.tree)
QObject.connect(self.tree, QtCore.SIGNAL("itemClicked(QTreeWidgetItem*, int)"), self.changeText)
self.tree.currentItemChanged.connect(self.changeText)
self.groupIcon = QtGui.QIcon()
self.groupIcon.addPixmap(self.style().standardPixmap(QtGui.QStyle.SP_DirClosedIcon),
QtGui.QIcon.Normal, QtGui.QIcon.Off)
Expand Down

0 comments on commit 6ddcf98

Please sign in to comment.