diff options
author | Marcus Elg <marcusaccounts@yahoo.se> | 2022-06-24 10:45:34 +0200 |
---|---|---|
committer | Marcus Elg <marcusaccounts@yahoo.se> | 2022-06-24 10:45:34 +0200 |
commit | 6c1ac9f3bef9ff1026127bb76d44d1019887eeaf (patch) | |
tree | fcae990135c579dd4ef08d689720c589c01bdf0e /editor/editor_properties.cpp | |
parent | faae24637cdf8ce50e06e9968342003fcd2ca470 (diff) |
Rename export_range's noslider option to no_slider
Diffstat (limited to 'editor/editor_properties.cpp')
-rw-r--r-- | editor/editor_properties.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/editor_properties.cpp b/editor/editor_properties.cpp index 61b434a240..2562c740aa 100644 --- a/editor/editor_properties.cpp +++ b/editor/editor_properties.cpp @@ -3601,7 +3601,7 @@ static EditorPropertyRangeHint _parse_range_hint(PropertyHint p_hint, const Stri hint.greater = true; } else if (slice == "or_lesser") { hint.lesser = true; - } else if (slice == "noslider") { + } else if (slice == "no_slider") { hint.hide_slider = true; } else if (slice == "exp") { hint.exp_range = true; |