From 522db05090c87397283b11b28e81261bd4fc93b5 Mon Sep 17 00:00:00 2001 From: "jabber.developer2" Date: Wed, 29 Oct 2025 20:15:55 +0300 Subject: [PATCH] style(ui,window): format code and tidy comments Whitespace and comment formatting only; no functional changes. --- src/ui/window.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/ui/window.c b/src/ui/window.c index cc76bf02..59651843 100644 --- a/src/ui/window.c +++ b/src/ui/window.c @@ -701,11 +701,11 @@ void win_page_down(ProfWin* window, int scroll_size) { int total_rows = getcury(window->layout->win); - int total_rows_with_unreaded = total_rows + window->layout->unread_msg; + int total_rows_with_unread = total_rows + window->layout->unread_msg; int* page_start = &(window->layout->y_pos); int page_space = getmaxy(stdscr) - 4; int page_start_initial = *page_start; - + if (scroll_size == 0) scroll_size = page_space; win_scroll_state_t* scroll_state = &window->scroll_state; @@ -714,8 +714,8 @@ win_page_down(ProfWin* window, int scroll_size) *page_start += scroll_size; // Scrolled down after reaching the bottom of the page - gboolean past_bottom = *page_start > total_rows_with_unreaded - page_space; - gboolean at_page_space_and_past_unread = (*page_start == page_space && *page_start >= total_rows_with_unreaded); + gboolean past_bottom = *page_start > total_rows_with_unread - page_space; + gboolean at_page_space_and_past_unread = (*page_start == page_space && *page_start >= total_rows_with_unread); gboolean is_chat = window->type == WIN_CHAT; if ((past_bottom || at_page_space_and_past_unread) && is_chat) {