Browse Source

Change default seed bounds to int32

pull/165/head
Ionite 1 year ago
parent
commit
922365573a
No known key found for this signature in database
  1. 2
      StabilityMatrix.Avalonia/ViewModels/Inference/SeedCardViewModel.cs

2
StabilityMatrix.Avalonia/ViewModels/Inference/SeedCardViewModel.cs

@ -24,7 +24,7 @@ public partial class SeedCardViewModel : LoadableViewModelBase
[RelayCommand] [RelayCommand]
public void GenerateNewSeed() public void GenerateNewSeed()
{ {
Seed = Random.Shared.NextInt64(); Seed = Random.Shared.NextInt64(0, int.MaxValue);
} }
/// <inheritdoc /> /// <inheritdoc />

Loading…
Cancel
Save