509 self.filesTree.clear() |
509 self.filesTree.clear() |
510 |
510 |
511 @pyqtSlot(bool) |
511 @pyqtSlot(bool) |
512 def on_stopCheckBox_clicked(self, checked): |
512 def on_stopCheckBox_clicked(self, checked): |
513 """ |
513 """ |
514 Private slot called, when the stop on copy/move checkbox is clicked |
514 Private slot called, when the stop on copy/move checkbox is clicked. |
|
515 |
|
516 @param checked flag indicating the check box state (boolean) |
515 """ |
517 """ |
516 self.vcs.getPlugin().setPreferences("StopLogOnCopy", |
518 self.vcs.getPlugin().setPreferences("StopLogOnCopy", |
517 int(self.stopCheckBox.isChecked())) |
519 int(self.stopCheckBox.isChecked())) |
518 self.nextButton.setEnabled(True) |
520 self.nextButton.setEnabled(True) |
519 self.limitSpinBox.setEnabled(True) |
521 self.limitSpinBox.setEnabled(True) |