From 08d6fe8f61b3b0a0b767cfca93412703017810a3 Mon Sep 17 00:00:00 2001 From: "B. Watson" Date: Fri, 13 Mar 2026 05:09:14 -0400 Subject: Don't hide the edit box when some other channel becomes active. --- src/screen.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'src/screen.c') diff --git a/src/screen.c b/src/screen.c index 5852208..2b56808 100644 --- a/src/screen.c +++ b/src/screen.c @@ -3,6 +3,7 @@ #include "addrs.h" #include "screen.h" +#include "edbox.h" #define SDLST ((u16 *)0x0230) @@ -157,8 +158,10 @@ void scr_show_status(char s) { *p++ = sc; } - scr_waitvcount(112); - *dlist_status_lms = (u16)status_boxes[s]; + if(!edbox_visible) { + scr_waitvcount(112); + *dlist_status_lms = (u16)status_boxes[s]; + } } void scr_refresh(void) { -- cgit v1.2.3