Navigation Menu

Skip to content

Commit

Permalink
History processing moved to separate thread. Note not much user feedb…
Browse files Browse the repository at this point in the history
…ack.

git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@236 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d
  • Loading branch information
cpolymeris@gmail.com committed Jun 11, 2012
1 parent 4bf3dc3 commit f2d4561
Showing 1 changed file with 7 additions and 12 deletions.
19 changes: 7 additions & 12 deletions src/sextante/core/Sextante.py
Expand Up @@ -337,18 +337,13 @@ def runandload(name, *args):
return

QApplication.setOverrideCursor(QCursor(Qt.WaitCursor))
#~ ret = AlgorithmExecutor.runalg(alg, SilentProgress())
algex = AlgorithmExecutor(alg, SilentProgress())
algex.start()
QApplication.restoreOverrideCursor()
if ret:
algEx = AlgorithmExecutor(alg)
def finish():
SextantePostprocessing.handleAlgorithmResults(alg)







QApplication.restoreOverrideCursor()
algEx.finished.connect(finish)
algEx.start()




0 comments on commit f2d4561

Please sign in to comment.