From 89f75575a5100bef9276037047e97b3e4e324827 Mon Sep 17 00:00:00 2001 From: "jabber.developer2" Date: Tue, 28 Oct 2025 19:50:59 +0300 Subject: [PATCH] docs(ui,window): update comments related to metrics handling Adjust comments to better reflect metrics-related behavior; no functional changes. --- src/ui/window.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/ui/window.c b/src/ui/window.c index a463150d..dd08c29a 100644 --- a/src/ui/window.c +++ b/src/ui/window.c @@ -750,8 +750,9 @@ win_page_down(ProfWin* window, int scroll_size) win_update_virtual(window); } - /*switch off page if no messages left to read - TODO: update buffer end handling to check meassages just after last entry*/ + /* Switch off page if no messages left to read. + * TODO: update buffer end handling to check messages just after last entry. + */ if (*scroll_state == WIN_SCROLL_REACHED_BOTTOM) { window->layout->paged = 0; window->layout->unread_msg = 0;