Skip to content

Commit db101a3

Browse files
committed
[sextante] fixed idle progress bar in execution dialog
1 parent facc198 commit db101a3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

python/plugins/sextante/gui/AlgorithmExecutionDialog.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -327,8 +327,8 @@ def cancel(self):
327327
def resetGUI(self):
328328
QApplication.restoreOverrideCursor()
329329
self.progressLabel.setText("")
330-
self.progress.setValue(0)
331-
self.progress.setMaximum(100)
330+
self.progress.setValue(100)
331+
#self.progress.setMaximum(100)
332332
self.buttonBox.button(QtGui.QDialogButtonBox.Ok).setEnabled(True)
333333
self.buttonBox.button(QtGui.QDialogButtonBox.Close).setEnabled(True)
334334
self.buttonBox.button(QtGui.QDialogButtonBox.Cancel).setEnabled(False)

0 commit comments

Comments
 (0)