diff options
| author | B. Watson <urchlay@slackware.uk> | 2026-04-25 09:07:28 -0400 |
|---|---|---|
| committer | B. Watson <urchlay@slackware.uk> | 2026-04-25 09:07:28 -0400 |
| commit | d8e36c6648558fa43865ea238412124e5c2a95f9 (patch) | |
| tree | bc399c384462a0b7ba0124725b79b746ba83c480 /src/irc.c | |
| parent | ad7d30a6b0a2d10a59cd422fb1c552048e347b8b (diff) | |
| download | fujinet-chat-d8e36c6648558fa43865ea238412124e5c2a95f9.tar.gz | |
Fix bug that caused us to get stuck in editbox-only mode.
Diffstat (limited to 'src/irc.c')
| -rw-r--r-- | src/irc.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; } |
