From 1ee026c0f6fd87dec5f9b70e5a5b0332390b59f7 Mon Sep 17 00:00:00 2001 From: Wah <74884113+wahtf@users.noreply.github.com> Date: Sun, 26 Jul 2026 17:06:54 -0400 Subject: [PATCH] Update QuickAccessButtonsComponent.cs --- .../QuestComponents/QuickAccessButtonsComponent.cs | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/Questionable/Windows/QuestComponents/QuickAccessButtonsComponent.cs b/Questionable/Windows/QuestComponents/QuickAccessButtonsComponent.cs index fba925ab3..ebc220c9b 100644 --- a/Questionable/Windows/QuestComponents/QuickAccessButtonsComponent.cs +++ b/Questionable/Windows/QuestComponents/QuickAccessButtonsComponent.cs @@ -158,16 +158,9 @@ private void DrawValidationIssuesButton() int infoCount = questRegistry.ValidationIssueCount - questRegistry.ValidationErrorCount; bool hasErrors = errorCount > 0; - string badge = hasErrors - ? errorCount.ToString(CultureInfo.InvariantCulture) - : infoCount > 0 - ? infoCount.ToString(CultureInfo.InvariantCulture) - : "..."; if (QstWidgets.RailButton(hasErrors ? FontAwesomeIcon.ExclamationTriangle : FontAwesomeIcon.InfoCircle, _LF("Quest validation: {0} errors, {1} infos", errorCount, infoCount), - tint: hasErrors ? QstTheme.Danger : QstTheme.Info, - countBadge: badge, - badgeColor: hasErrors ? QstTheme.Danger : QstTheme.Info)) + tint: hasErrors ? QstTheme.Danger : QstTheme.Info)) questValidationWindow.ToggleOrUncollapse(); } }