Skip to content

Commit

Permalink
added min/max text when editing
Browse files Browse the repository at this point in the history
  • Loading branch information
krogenth committed Oct 5, 2024
1 parent a4765b4 commit 87362f2
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,8 @@ public WordRecognitionWindowViewModel(WordRecognition wordRecognition)
MaxInitialDelayInputVM = new("Maximum Initial Delay (seconds)", MaxInitialDelay);
MinDelayInputVM = new("Minimum Delay (seconds)", MinDelay);
MaxDelayInputVM = new("Maximum Delay (seconds)", MaxDelay);
MinIntensityInputVM = new("Intensity (%)", MinIntensity, 0, 100);
MaxIntensityInputVM = new("Intensity (%)", MaxIntensity, 0, 100);
MinIntensityInputVM = new("Minimum Intensity (%)", MinIntensity, 0, 100);
MaxIntensityInputVM = new("Maximum Intensity (%)", MaxIntensity, 0, 100);
MinDurationInputVM = new("Minimum Duration (ms)", MinDuration);
MaxDurationInputVM = new("Maximum Duration (ms)", MaxDuration);
CooldownInputVM = new("Cooldown (ms)", Cooldown, 0, double.MaxValue, 1);
Expand Down

0 comments on commit 87362f2

Please sign in to comment.