Fix Multi-Window not checked by default (#5806)

* Fix Multi-Window not checked by default

Last time i tested with a new config file this was actually on, despite it showing off. So now it shows ON by default :)

* clang
This commit is contained in:
Spodi
2025-09-26 16:50:24 +02:00
committed by GitHub
parent 4b9c949428
commit 14d269d99e

View File

@@ -400,8 +400,9 @@ void SohMenu::AddMenuSettings() {
.RaceDisable(false)
.PreFunc(
[](WidgetInfo& info) { info.isHidden = mSohMenu->disabledMap.at(DISABLE_FOR_NO_MULTI_VIEWPORT).active; })
.Options(CheckboxOptions().Tooltip(
"Allows multiple windows to be opened at once. Requires a reload to take effect."));
.Options(CheckboxOptions()
.Tooltip("Allows multiple windows to be opened at once. Requires a reload to take effect.")
.DefaultValue(true));
AddWidget(path, "Texture Filter (Needs reload)", WIDGET_CVAR_COMBOBOX)
.CVar(CVAR_TEXTURE_FILTER)
.RaceDisable(false)