aboutsummaryrefslogtreecommitdiff
path: root/components
diff options
context:
space:
mode:
authortassaron2017-05-29 17:38:28 -0400
committertassaron2017-05-29 17:38:28 -0400
commit75f1e8af76fe0ea01d4dd59d53d6ce3b31a4a706 (patch)
treee4e9fda900f760eb5b32adfa6b69d8e35193be9e /components
parentdb7acbf3ea353d6c5b21de44b4f532b43339ac5c (diff)
title text does not need to generate a new image each frame
Diffstat (limited to 'components')
-rw-r--r--components/text.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/components/text.py b/components/text.py
index 334fc80..8b7f6be 100644
--- a/components/text.py
+++ b/components/text.py
@@ -87,6 +87,7 @@ class Component:
def preFrameRender(self, **kwargs):
for kwarg, value in kwargs.items():
exec('self.%s = value' % kwarg)
+ return ['static']
def frameRender(self, moduleNo, frameNo):
width = int(self.worker.core.settings.value('outputWidth'))