aboutsummaryrefslogtreecommitdiff
path: root/main.py
diff options
context:
space:
mode:
authorMaximilian Siess2017-04-18 13:46:24 +0200
committerMaximilian Siess2017-04-18 13:46:24 +0200
commit5d796c76b796d65d1fd08812b6d038ba01bb001e (patch)
treef98c2e0d4689414e25800e7829d1fe7c921b774a /main.py
parentc772bf5583dec23513371392ca6d2018518483cb (diff)
Alignment options added to render task
Diffstat (limited to 'main.py')
-rw-r--r--main.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/main.py b/main.py
index f71bbf2..40c1650 100644
--- a/main.py
+++ b/main.py
@@ -16,7 +16,7 @@ class Main(QtCore.QObject):
newTask = QtCore.pyqtSignal(str, str, QFont, str)
processTask = QtCore.pyqtSignal()
- videoTask = QtCore.pyqtSignal(str, str, QFont, str, str)
+ videoTask = QtCore.pyqtSignal(str, str, QFont, str, str, str)
def __init__(self, window):
@@ -128,6 +128,7 @@ class Main(QtCore.QObject):
self.videoTask.emit(self.window.label_background.text(),
self.window.lineEdit_title.text(),
self.window.fontComboBox.currentFont(),
+ self.window.alignmentComboBox.currentText(),
self.window.label_input.text(),
self.window.label_output.text())