Subj : src/sbbs3/scfg/scfgsys.c To : Git commit to main/sbbs/master From : Rob Swindell (on Windows 11) Date : Sun Dec 31 2023 08:04 pm https://gitlab.synchro.net/main/sbbs/-/commit/f18775d2f2be416187d3e1ad Modified Files: src/sbbs3/scfg/scfgsys.c Log Message: Fix the date format selection for wizard mode (cosmetic) .... using WIN_FIXEDHEIGHT mode to limit the list height in wizard mode. I had a solution using a negative width param value to specify a height limit, but then I saw this code in ulist(): ``` if(mode&WIN_FIXEDHEIGHT) { height=api->list_height; } ``` something Deuce added for SyncTERM and I don't think I've ever used before. It works. .