From 5c8f3b5978bebb3c49473c072f214b6b06d5fd0d Mon Sep 17 00:00:00 2001 From: Derek Schmidt Date: Wed, 24 Apr 2019 21:32:28 -0700 Subject: [PATCH] Fix crash on window open Missed a call when changing refresh to refresh_text --- toot/ui/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/toot/ui/app.py b/toot/ui/app.py index c2e00e8..a41d004 100644 --- a/toot/ui/app.py +++ b/toot/ui/app.py @@ -404,7 +404,7 @@ class EntryModal(Modal): def show(self): super().show() - self.refresh() + self.refresh_text() def clear(self): self.content = []