aboutsummaryrefslogtreecommitdiff
path: root/src/mainwindow.py
diff options
context:
space:
mode:
authortassaron2017-07-09 14:31:19 -0400
committertassaron2017-07-09 14:31:19 -0400
commitf6fbc8d2423ac5ae683a7613b53648db3e02e323 (patch)
tree218c5a056349f9eb1cc0b7952a09b254f1962b95 /src/mainwindow.py
parent94d4acc1f4f4abe4029e8f9c050932b67cae8cec (diff)
a basic Sound component for mixing sounds
to be greatly expanded...
Diffstat (limited to 'src/mainwindow.py')
-rw-r--r--src/mainwindow.py2
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)