Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[pyqgis-console] fix spell check
  • Loading branch information
slarosa authored and nyalldawson committed Oct 23, 2020
1 parent 77c4823 commit 2748215
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/console/console_sci.py
Expand Up @@ -573,9 +573,9 @@ def __init__(self, parent):
self.listView.doubleClicked.connect(self._runHistory)
self.reloadHistory.clicked.connect(self._reloadHistory)
self.saveHistory.clicked.connect(self._saveHistory)
self.runHistoryButton.clicked.connect(self._runSelectedHistory)
self.runHistoryButton.clicked.connect(self._executeSelectedHistory)

def _runSelectedHistory(self):
def _executeSelectedHistory(self):
items = self.listView.selectionModel().selectedIndexes()
items.sort()
for item in items:
Expand Down

0 comments on commit 2748215

Please sign in to comment.