Skip to content

Commit

Permalink
Fix min max defaults
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexProgrammerDE committed Nov 15, 2024
1 parent 9e76846 commit 85aab4f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,8 @@ private static MinMaxSetting createMinMaxSetting(MinMaxProperty property) {
.setMaxUiName(property.maxUiName())
.setMinDescription(property.minDescription())
.setMaxDescription(property.maxDescription())
.setMinDef(property.minValue())
.setMaxDef(property.maxValue())
.setMinDef(property.minDefaultValue())
.setMaxDef(property.maxDefaultValue())
.setMin(property.minValue())
.setMax(property.maxValue())
.setStep(property.stepValue());
Expand Down

0 comments on commit 85aab4f

Please sign in to comment.