Subj : src/sbbs3/con_out.cpp newuser.cpp To : Git commit to main/sbbs/master From : Rob Swindell (on Debian Linux) Date : Fri Jan 27 2023 09:14 pm https://gitlab.synchro.net/main/sbbs/-/commit/adb05e50ffca63c403382ea8 Modified Files: src/sbbs3/con_out.cpp newuser.cpp Log Message: New user terminal settings weren't display/settable durin sign-up The interactive prompting for terminal capabilities worked fine, but the default configuration menu settings did not reflect the user's previous choices and changes they made (e.g. toggle mouse support or BS/DEL key swap) were not reflected in the menu. Once logged in, the normal user defaults menu worked as expected. This is all because term_supports() keyed off of SS_USERON which isn't set during new user sign-up, so let's key off SS_USERON|SS_NEWUSER now. .