From cf8ee248de02d59445ba56b681051417060c0879 Mon Sep 17 00:00:00 2001 From: pdxlocations Date: Thu, 30 Jan 2025 13:40:13 -0800 Subject: [PATCH] adjust packet log message window offset --- ui/curses_ui.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/curses_ui.py b/ui/curses_ui.py index a88ab63..cac8869 100644 --- a/ui/curses_ui.py +++ b/ui/curses_ui.py @@ -55,7 +55,7 @@ def draw_function_win(): def get_msg_window_lines(): packetlog_height = packetlog_win.getmaxyx()[0] if globals.display_log else 0 - return messages_box.getmaxyx()[0] - 2 - packetlog_height + return messages_box.getmaxyx()[0] - 1 - packetlog_height def refresh_pad(window): win_height = channel_box.getmaxyx()[0]