From d8e36c6648558fa43865ea238412124e5c2a95f9 Mon Sep 17 00:00:00 2001 From: "B. Watson" Date: Sat, 25 Apr 2026 09:07:28 -0400 Subject: Fix bug that caused us to get stuck in editbox-only mode. --- src/irc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/irc.c') diff --git a/src/irc.c b/src/irc.c index 5ea8825..15fc2a6 100644 --- a/src/irc.c +++ b/src/irc.c @@ -895,7 +895,7 @@ void ui_ping(void) { static void toggle_edbox_only(void) { if(OS.sdlst == edbox_only_dlist) - scr_end_scrollback(); + OS.sdlst = DLIST_VIS; else OS.sdlst = edbox_only_dlist; } -- cgit v1.2.3