Skip to content
Permalink
Browse files
Rename processing 'recently used algorithms' to 'recently used'
Since we show much more than just 'algorithms' here
  • Loading branch information
nyalldawson committed Aug 23, 2017
1 parent 54e38bc commit 0669167
Showing 1 changed file with 2 additions and 2 deletions.
@@ -319,13 +319,13 @@ def addRecentAlgorithms(self, updating):
found = False
if updating:
recentItem = self.algorithmTree.topLevelItem(0)
if recentItem.text(0) == self.tr('Recently used algorithms'):
if recentItem.text(0) == self.tr('Recently used'):
treeWidget = recentItem.treeWidget()
treeWidget.takeTopLevelItem(
treeWidget.indexOfTopLevelItem(recentItem))

recentItem = QTreeWidgetItem()
recentItem.setText(0, self.tr('Recently used algorithms'))
recentItem.setText(0, self.tr('Recently used'))
for algname in recent:
alg = QgsApplication.processingRegistry().createAlgorithmById(algname)
if alg is not None:

0 comments on commit 0669167

Please sign in to comment.