From 922365573aab7ae3d193ddb5669af48182b280ca Mon Sep 17 00:00:00 2001 From: Ionite Date: Mon, 28 Aug 2023 01:05:20 -0400 Subject: [PATCH] Change default seed bounds to int32 --- .../ViewModels/Inference/SeedCardViewModel.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/StabilityMatrix.Avalonia/ViewModels/Inference/SeedCardViewModel.cs b/StabilityMatrix.Avalonia/ViewModels/Inference/SeedCardViewModel.cs index d51e6485..c07de500 100644 --- a/StabilityMatrix.Avalonia/ViewModels/Inference/SeedCardViewModel.cs +++ b/StabilityMatrix.Avalonia/ViewModels/Inference/SeedCardViewModel.cs @@ -24,7 +24,7 @@ public partial class SeedCardViewModel : LoadableViewModelBase [RelayCommand] public void GenerateNewSeed() { - Seed = Random.Shared.NextInt64(); + Seed = Random.Shared.NextInt64(0, int.MaxValue); } ///