Subj : src/uifc/uifc32.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/289c3e5cd646300240eff1f5 Modified Files: src/uifc/uifc32.c Log Message: Fix dynamically calcluated list height bug when in T2B mode and top val given In T2B (top to bottom centering) mode, the 'top' parametr value isn't actually for the top of the window position (later), so just zero it here in case it was specified (and non-zero) to correct the calcutation on the next lines: ``` if(top+height>s_bottom) height=(s_bottom)-top; ``` .