Default "Hide unshuffled shop item checks" to off (#4900)

This commit is contained in:
aMannus 2025-01-18 11:46:01 +01:00 committed by GitHub
parent d1b7a5b814
commit 7d2a4e5818
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1757,7 +1757,7 @@ void CheckTrackerSettingsWindow::DrawElement() {
}
UIWidgets::EnhancementCheckbox("Vanilla/MQ Dungeon Spoilers", CVAR_TRACKER_CHECK("MQSpoilers"));
UIWidgets::Tooltip("If enabled, Vanilla/MQ dungeons will show on the tracker immediately. Otherwise, Vanilla/MQ dungeon locations must be unlocked.");
if (UIWidgets::EnhancementCheckbox("Hide unshuffled shop item checks", CVAR_TRACKER_CHECK("HideUnshuffledShopChecks"), false, "", UIWidgets::CheckboxGraphics::Cross, true)) {
if (UIWidgets::EnhancementCheckbox("Hide unshuffled shop item checks", CVAR_TRACKER_CHECK("HideUnshuffledShopChecks"), false, "", UIWidgets::CheckboxGraphics::Cross, false)) {
hideShopUnshuffledChecks = !hideShopUnshuffledChecks;
UpdateFilters();
}