From cb3955f8bcb311d45e389445a44a682cc1ebd6bd Mon Sep 17 00:00:00 2001 From: Warchamp7 Date: Wed, 10 Apr 2024 14:59:16 -0400 Subject: [PATCH] UI: Fix Top Patron threshold --- UI/window-basic-about.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/UI/window-basic-about.cpp b/UI/window-basic-about.cpp index 3000c8e91..10751bb1a 100644 --- a/UI/window-basic-about.cpp +++ b/UI/window-basic-about.cpp @@ -108,7 +108,7 @@ void OBSAbout::ShowAbout() std::string link = patron["link"].string_value(); int amount = patron["amount"].int_value(); - if (top && amount < 10000) { + if (top && amount < 5000) { text += "

"; top = false; } else if (!first) {