Display a message in footer upon [P]in action

And clear the message after 5s.
pull/171/head
Denis Laxalde 2020-01-27 11:50:12 +01:00 zatwierdzone przez Ivan Habunek
rodzic 4d1fa837a1
commit 3efa330d69
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: CDBD63C43A30BB95
1 zmienionych plików z 3 dodań i 0 usunięć

Wyświetl plik

@ -221,8 +221,11 @@ class TUI(urwid.Frame):
timelines = self.config.setdefault("timelines", {})
if hashtag in timelines:
del timelines[hashtag]
self.footer.set_message("#{} unpinned".format(hashtag))
else:
timelines[hashtag] = {"local": local}
self.footer.set_message("#{} pinned".format(hashtag))
self.loop.set_alarm_in(5, lambda *args: self.footer.clear_message())
config.save_config(self.config)
timeline = Timeline(name, statuses)