aboutsummaryrefslogtreecommitdiff
path: root/components/text.py
diff options
context:
space:
mode:
authortassaron2017-06-04 13:00:36 -0400
committertassaron2017-06-04 13:00:36 -0400
commit39e66ffa2d07b87b57ed90b369ab26aedf0a69e8 (patch)
treef11cf59368997a9b0dbd6cfd4cb9dd3e45f03583 /components/text.py
parent443c65455a1cae8ccaea0f0af7cdda3919c709f8 (diff)
video component almost working, rm hardcoded backgrounds
Diffstat (limited to 'components/text.py')
-rw-r--r--components/text.py8
1 files changed, 1 insertions, 7 deletions
diff --git a/components/text.py b/components/text.py
index d2e009d..2650935 100644
--- a/components/text.py
+++ b/components/text.py
@@ -104,7 +104,7 @@ class Component(__base__.Component):
super().preFrameRender(**kwargs)
return ['static']
- def frameRender(self, moduleNo, frameNo):
+ def frameRender(self, moduleNo, arrayNo, frameNo):
width = int(self.worker.core.settings.value('outputWidth'))
height = int(self.worker.core.settings.value('outputHeight'))
return self.addText(width, height)
@@ -137,9 +137,3 @@ class Component(__base__.Component):
return
self.page.lineEdit_textColor.setText(RGBstring)
self.page.pushButton_textColor.setStyleSheet(btnStyle)
-
- def cancel(self):
- self.canceled = True
-
- def reset(self):
- self.canceled = False