UI: Fix Top Patron threshold

This commit is contained in:
Warchamp7
2024-04-10 14:59:16 -04:00
committed by Lain
parent 31aa700d22
commit cb3955f8bc

View File

@@ -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 += "</p>";
top = false;
} else if (!first) {