File tree Expand file tree Collapse file tree 1 file changed +7
-5
lines changed
python/plugins/processing/gui Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -199,17 +199,19 @@ def accept(self):
199
199
self .table .setEnabled (False )
200
200
self .tabWidget .setCurrentIndex (1 )
201
201
self .progress .setMaximum (len (self .algs ))
202
+ # make sure the log tab is visible before executing the algorithm
203
+ try :
204
+ self .repaint ()
205
+ except :
206
+ pass
202
207
for (i , alg ) in enumerate (self .algs ):
203
208
self .setBaseText ('Processing algorithm ' + str (i + 1 ) + '/'
204
209
+ str (len (self .algs )) + '...' )
205
- # make sure the log tab is visible before executing the algorithm
206
- try :
207
- self .repaint ()
208
- except :
209
- pass
210
+ self .setInfo ('<b>Algorithm %s starting...</b>' % alg .name )
210
211
if UnthreadedAlgorithmExecutor .runalg (alg , self ) and not self .canceled :
211
212
if self .load [i ]:
212
213
handleAlgorithmResults (alg , self , False )
214
+ self .setInfo ('Algorithm %s correctly executed...' % alg .name )
213
215
else :
214
216
QApplication .restoreOverrideCursor ()
215
217
return
You can’t perform that action at this time.
0 commit comments