diff options
| author | tassaron | 2017-05-29 17:38:28 -0400 |
|---|---|---|
| committer | tassaron | 2017-05-29 17:38:28 -0400 |
| commit | 75f1e8af76fe0ea01d4dd59d53d6ce3b31a4a706 (patch) | |
| tree | e4e9fda900f760eb5b32adfa6b69d8e35193be9e /components/text.py | |
| parent | db7acbf3ea353d6c5b21de44b4f532b43339ac5c (diff) | |
title text does not need to generate a new image each frame
Diffstat (limited to 'components/text.py')
| -rw-r--r-- | components/text.py | 1 |
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')) |
