From 82353436613e497722ee95bdcde9eac12c29c559 Mon Sep 17 00:00:00 2001 From: StanR Date: Fri, 30 Aug 2024 22:53:23 +0500 Subject: [PATCH] Remove redundant qualifier --- PerformanceCalculatorGUI/Screens/ProfileScreen.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PerformanceCalculatorGUI/Screens/ProfileScreen.cs b/PerformanceCalculatorGUI/Screens/ProfileScreen.cs index 07426cf84..ce669f726 100644 --- a/PerformanceCalculatorGUI/Screens/ProfileScreen.cs +++ b/PerformanceCalculatorGUI/Screens/ProfileScreen.cs @@ -311,7 +311,7 @@ private void calculateProfile(string username) Schedule(() => { loadingLayer.Hide(); - calculationButton.State.Value = Components.ButtonState.Done; + calculationButton.State.Value = ButtonState.Done; }); }, TaskContinuationOptions.None); }