From 9d80112d73fed23907eac6640aff3914c38c0a49 Mon Sep 17 00:00:00 2001 From: Anders Betts Date: Fri, 18 Sep 2026 13:39:17 +0200 Subject: bokftui: drop the redundant fiscal-year label from the status line --- clients/bokftui.c | 5 ++--- docs/TUI-GUIDELINES.md | 2 +- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/clients/bokftui.c b/clients/bokftui.c index 10824bf..1662c87 100644 --- a/clients/bokftui.c +++ b/clients/bokftui.c @@ -1004,9 +1004,8 @@ static void app_refresh_context(struct app *a) static void update_status(struct app *a) { - snprintf(g_status, sizeof g_status, "%s | %s %s - %s | %s | %s", - a->org_name, a->fy_label, a->fy_start, a->fy_end, a->role, - a->username); + snprintf(g_status, sizeof g_status, "%s | %s - %s | %s | %s", + a->org_name, a->fy_start, a->fy_end, a->role, a->username); } diff --git a/docs/TUI-GUIDELINES.md b/docs/TUI-GUIDELINES.md index 322d073..7907a4a 100644 --- a/docs/TUI-GUIDELINES.md +++ b/docs/TUI-GUIDELINES.md @@ -91,7 +91,7 @@ footer shows it; if the footer shows it, the key works. ## Layout and text - Screen frame: title top-left, dim status line under it - (`org | label start - end | role | user`), hints in the last line. + (`org | start - end | role | user`), hints in the last line. - Columns are padded with `pad_field()` (UTF-8 display width) and truncated to their column; amounts right-aligned via `kr_format()`; never pad with `%s` widths directly on user text. -- cgit v1.3