diff options
| author | tassaron | 2017-07-09 14:31:19 -0400 |
|---|---|---|
| committer | tassaron | 2017-07-09 14:31:19 -0400 |
| commit | f6fbc8d2423ac5ae683a7613b53648db3e02e323 (patch) | |
| tree | 218c5a056349f9eb1cc0b7952a09b254f1962b95 /src/mainwindow.py | |
| parent | 94d4acc1f4f4abe4029e8f9c050932b67cae8cec (diff) | |
a basic Sound component for mixing sounds
to be greatly expanded...
Diffstat (limited to 'src/mainwindow.py')
| -rw-r--r-- | src/mainwindow.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mainwindow.py b/src/mainwindow.py index 165b5bd..3cd45d6 100644 --- a/src/mainwindow.py +++ b/src/mainwindow.py @@ -557,9 +557,11 @@ class MainWindow(QtWidgets.QMainWindow): self.window.progressLabel.setHidden(True) self.drawPreview(True) + @QtCore.pyqtSlot(int) def progressBarUpdated(self, value): self.window.progressBar_createVideo.setValue(value) + @QtCore.pyqtSlot(str) def progressBarSetText(self, value): if sys.platform == 'darwin': self.window.progressLabel.setText(value) |
