From e718b2c2cd0e34fa320b7ee84ae4b552c98a6141 Mon Sep 17 00:00:00 2001 From: Knux Date: Wed, 1 Jun 2022 21:44:17 +0100 Subject: [PATCH] Change the Debug Seed Because it being `WPF Test` means nothing at this point. --- MarathonRandomiser/MainWindow.xaml.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MarathonRandomiser/MainWindow.xaml.cs b/MarathonRandomiser/MainWindow.xaml.cs index 85ce0e6..f173cd3 100644 --- a/MarathonRandomiser/MainWindow.xaml.cs +++ b/MarathonRandomiser/MainWindow.xaml.cs @@ -64,7 +64,7 @@ public MainWindow() // If this is a debug build, set the seed to WPF Test for the sake of consistent testing and list the Temporary Directory path. #if DEBUG - TextBox_General_Seed.Text = "WPF Test"; + TextBox_General_Seed.Text = "Development Testing"; Debug.WriteLine($"Current temporary path is: {TemporaryDirectory}."); #endif