Make useFullWidth the default. (#12911)

This commit is contained in:
Jacob Richman
2025-11-11 16:14:08 -08:00
committed by GitHub
parent e9027d5e6f
commit 617a63ec73
7 changed files with 42 additions and 42 deletions
+1 -1
View File
@@ -26,7 +26,7 @@ export const calculateMainAreaWidth = (
terminalWidth: number,
settings: LoadedSettings,
): number => {
if (settings.merged.ui?.useFullWidth) {
if (settings.merged.ui?.useFullWidth !== false) {
if (settings.merged.ui?.useAlternateBuffer) {
return terminalWidth - 1;
}