diff options
| author | B. Watson <urchlay@slackware.uk> | 2026-03-13 05:09:14 -0400 |
|---|---|---|
| committer | B. Watson <urchlay@slackware.uk> | 2026-03-13 05:09:14 -0400 |
| commit | 08d6fe8f61b3b0a0b767cfca93412703017810a3 (patch) | |
| tree | be24640dc80550376caacd1d83075e950eb78e19 /src/screen.c | |
| parent | 5c3f9502bcda72dd4202a5a752441abcdf246ad1 (diff) | |
| download | fujinet-chat-08d6fe8f61b3b0a0b767cfca93412703017810a3.tar.gz | |
Don't hide the edit box when some other channel becomes active.
Diffstat (limited to 'src/screen.c')
| -rw-r--r-- | src/screen.c | 7 |
1 files changed, 5 insertions, 2 deletions
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) { |
