[core/theme] Small bugfix (widget needs to have linked module)

This is mainly for the autotests
This commit is contained in:
Tobias Witek 2018-01-17 18:56:12 +01:00
parent 9f77514a1c
commit 4716481087
2 changed files with 10 additions and 1 deletions

View file

@ -233,7 +233,8 @@ class Theme(object):
widget.set(key, (idx + 1) % len(value))
value = value[idx]
value = widget.get_module().parameter("theme.{}".format(name), value)
if widget.get_module() is not None:
value = widget.get_module().parameter("theme.{}".format(name), value)
if isinstance(value, list) or isinstance(value, dict):
return value