diff options
| author | Daniel Thompson <daniel@redfelineninja.org.uk> | 2020-03-08 20:47:19 (GMT) |
|---|---|---|
| committer | Daniel Thompson <daniel@redfelineninja.org.uk> | 2020-03-08 20:47:19 (GMT) |
| commit | a864a93706aa45e1f104b9710bc47f3b26bc4781 (patch) | |
| tree | c79923c0524befa885f787b302ddb89354616107 /wasp/manager.py | |
| parent | adf9a33c9e4903639a24d81d7ccaa5d528225cc5 (diff) | |
wasp: manager: Blankt the display during app transitions
Diffstat (limited to 'wasp/manager.py')
| -rw-r--r-- | wasp/manager.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/wasp/manager.py b/wasp/manager.py index b9fa084..d5a4ff9 100644 --- a/wasp/manager.py +++ b/wasp/manager.py @@ -42,7 +42,9 @@ class Manager(object): self.tick_expiry = None self.app = app + self.watch.display.mute(True) app.foreground(self) + self.watch.display.mute(False) def navigate(self, direction=None): """Navigate between different applications. |
