From 422fe6cd29ce014270cf8bfd6f5bcad59ce2a0ca Mon Sep 17 00:00:00 2001 From: "C. McEnroe" Date: Wed, 27 Jan 2021 22:52:36 -0500 Subject: Move threshold and mute indicators directly after number I don't know why I ruled this out originally, it's more visually pleasing to me now especially that threshold is likely to remain set at "+" for a long time. --- ui.c | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) (limited to 'ui.c') diff --git a/ui.c b/ui.c index 7f7eb4e..23312ed 100644 --- a/ui.c +++ b/ui.c @@ -398,14 +398,11 @@ static void statusUpdate(void) { char buf[256] = ""; struct Cat cat = { buf, sizeof(buf), 0 }; catf( - &cat, "\3%d%s %u ", - idColors[window->id], (num == windows.show ? "\26" : ""), num + &cat, "\3%d%s %u%s%s %s ", + idColors[window->id], (num == windows.show ? "\26" : ""), + num, window->thresh[(const char *[]) { "-", "", "+", "++" }], + &"="[!window->mute], idNames[window->id] ); - if (window->thresh != Cold || window->mute) { - const char *thresh[] = { "-", "", "+", "++" }; - catf(&cat, "%s%s ", thresh[window->thresh], &"="[!window->mute]); - } - catf(&cat, "%s ", idNames[window->id]); if (window->mark && window->unreadWarm) { catf( &cat, "\3%d+%d\3%d%s", -- cgit 1.4.1 '/libretls/tree/compat/arc4random.h?h=3.3.3p1&id=bfce2a30014ef361a15d4b653b3810fcd53d991c'>tree commit diff
path: root/compat/arc4random.h (unfollow)
Commit message (Expand)Author
2020-09-29import: Add m4/ax_add_fortify_source.m4June McEnroe
2020-08-05build: Add README.7 to EXTRA_DIST 3.2.0June McEnroe
2020-08-03doc: Indicate that only OpenSSL 1.1.1b and newer workJune McEnroe