Skip to content

Commit 1ff165a

Browse files
committedDec 1, 2016
[processing] Fix updating results panel to match selected item
1 parent ecd876a commit 1ff165a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎python/plugins/processing/gui/ResultsDialog.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ def __init__(self):
4949
self.keyIcon = QIcon()
5050
self.keyIcon.addPixmap(self.style().standardPixmap(QStyle.SP_FileIcon))
5151

52-
self.tree.itemClicked.connect(self.changeResult)
52+
self.tree.currentItemChanged.connect(self.changeResult)
5353

5454
self.fillTree()
5555

0 commit comments

Comments
 (0)
Please sign in to comment.