From 5ecb98a516dec689beee97fbe23047a14d40db95 Mon Sep 17 00:00:00 2001 From: MinaciousGrace Date: Fri, 2 Jun 2017 00:11:17 -0400 Subject: [PATCH] re-enable validate all button by actually fiinishing the function --- src/ScoreManager.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/ScoreManager.cpp b/src/ScoreManager.cpp index b78ecb2edf..806fd4ecaa 100644 --- a/src/ScoreManager.cpp +++ b/src/ScoreManager.cpp @@ -201,6 +201,9 @@ void ScoreManager::RecalculateSSRs() { // should deal with this misnomer - mina void ScoreManager::EnableAllScores() { + for (size_t i = 0; i < AllScores.size(); ++i) + AllScores[i]->SetEtternaValid(true); + return; }