diff options
| author | troido <troido@hotmail.com> | 2018-01-01 22:22:25 +0100 |
|---|---|---|
| committer | troido <troido@hotmail.com> | 2018-01-01 22:22:25 +0100 |
| commit | c1bfe8351f6da31221a9e2fa53ca6c5897a503bb (patch) | |
| tree | 144d57865777c7faa1ca5d73f8054a6e21e7cb9d /asciifarm/client/display/widget.py | |
| parent | 4108e9d6de64b4b8e9980a02158df34651986475 (diff) | |
stop raising debug exception on WINCH
Diffstat (limited to 'asciifarm/client/display/widget.py')
| -rw-r--r-- | asciifarm/client/display/widget.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/asciifarm/client/display/widget.py b/asciifarm/client/display/widget.py index ef28d50..2c90547 100644 --- a/asciifarm/client/display/widget.py +++ b/asciifarm/client/display/widget.py @@ -23,8 +23,8 @@ class Widget: def change(self): self.changed = True - def update(self, force=False): - if not (force or self.changed) or not self.win: + def update(self): + if not self.changed or not self.win: return self.impl.update() self.changed = False |
