(self, value, maximum=1)
| 381 | self.app.processEvents() |
| 382 | |
| 383 | def set_loading(self, value, maximum=1): |
| 384 | self.loading_bar.setValue(value * 100) |
| 385 | self.loading_bar.setMaximum(maximum * 100) |
| 386 | self.loading_bar.setTextVisible(value != 0) |
| 387 | self.app.processEvents() |
| 388 | |
| 389 | def populate_gen_options(self, seed, trim_silences): |
| 390 | if seed is not None: |
no outgoing calls
no test coverage detected