Skip to content

Commit 8ade74c

Browse files
committed
[processing] show wait cursor while updating alg list
1 parent 858dbd2 commit 8ade74c

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

python/plugins/processing/core/Processing.py

+2
Original file line numberDiff line numberDiff line change
@@ -155,8 +155,10 @@ def updateAlgsList():
155155
requires the list of algorithms to be created again from
156156
algorithm providers.
157157
"""
158+
QApplication.setOverrideCursor(QCursor(Qt.WaitCursor))
158159
Processing.loadFromProviders()
159160
Processing.fireAlgsListHasChanged()
161+
QApplication.restoreOverrideCursor()
160162

161163
@staticmethod
162164
def loadFromProviders():

0 commit comments

Comments
 (0)