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(); } }