(self)
| 64 | self.changePalette() |
| 65 | |
| 66 | def changePalette(self): |
| 67 | if (self.useStylePaletteCheckBox.isChecked()): |
| 68 | QApplication.setPalette(QApplication.style().standardPalette()) |
| 69 | else: |
| 70 | QApplication.setPalette(self.originalPalette) |
| 71 | |
| 72 | def advanceProgressBar(self): |
| 73 | curVal = self.progressBar.value() |