[core] Make error widget scrollable

Restrict error module to 15 characters and make it scrollable.
This commit is contained in:
Tobias Witek 2020-02-23 14:47:47 +01:00
parent a69e058dd1
commit 65186baea6
4 changed files with 8 additions and 4 deletions

View file

@ -11,7 +11,7 @@ class Widget(util.store.Store, core.input.Object):
self._full_text = value
else:
if callable(self._full_text):
return self._full_text()
return self._full_text(self)
return self._full_text
# vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4