Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[ui][processing] Also allow the enter key to launch the selected algo…
…rithm
  • Loading branch information
nirvn committed Oct 10, 2021
1 parent b5f898f commit 24a61fa
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions python/plugins/processing/gui/HistoryDialog.py
Expand Up @@ -79,6 +79,7 @@ def __init__(self):
self.tree.doubleClicked.connect(self.executeAlgorithm)
self.tree.currentItemChanged.connect(self.changeText)
shorcut = QShortcut(Qt.Key_Return, self.tree, context=Qt.WidgetShortcut, activated=self.executeAlgorithm)
shorcut = QShortcut(Qt.Key_Enter, self.tree, context=Qt.WidgetShortcut, activated=self.executeAlgorithm)

self.clearButton.clicked.connect(self.clearLog)
self.saveButton.clicked.connect(self.saveLog)
Expand Down

0 comments on commit 24a61fa

Please sign in to comment.