From b180c357c172b714de32c154b2c1cc73318cbc48 Mon Sep 17 00:00:00 2001 From: Kalakoi Date: Thu, 22 May 2025 12:26:59 -0400 Subject: [PATCH] Modified timer to only trigger once. --- osrs-toolbox/Views/SplashScreenView.xaml.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/osrs-toolbox/Views/SplashScreenView.xaml.cs b/osrs-toolbox/Views/SplashScreenView.xaml.cs index eb1fc1e..9911f29 100644 --- a/osrs-toolbox/Views/SplashScreenView.xaml.cs +++ b/osrs-toolbox/Views/SplashScreenView.xaml.cs @@ -51,6 +51,7 @@ namespace osrs_toolbox private void TimerTick(object sender, EventArgs e) { + timer.Stop(); Application.Current.MainWindow = HomePageView.Current; HomePageView.Current.Show(); this.Close();