retronews

a featureful fork of the luke8086/retronews hn+lobste.rs tui
Log | Files | Refs | README | LICENSE

commit 0f9128220ecf3616862f591aac29a0eae606038d
parent 5650d71f5a8a894bd56098c270a2da49acc3edfb
Author: luke8086 <55237178+luke8086@users.noreply.github.com>
Date:   Sat, 17 Jun 2023 08:30:50 +0000

Show info when raw mode is enabled

Diffstat:
Mretronews.py | 2++
1 file changed, 2 insertions(+), 0 deletions(-)

diff --git a/retronews.py b/retronews.py @@ -1403,6 +1403,8 @@ def app_render_middle_menu(app: AppState) -> None: text = f"--({unread}/{total} unread)" if thread_message.flags.starred: text += "--(starred thread)" + if app.raw_mode: + text += "--(raw mode on)" text = text[:cols].ljust(cols, "-") app.screen.insstr(row, 0, text, app.colors["menu"] | curses.A_BOLD)