diff options
author | Aaron Franke <arnfranke@yahoo.com> | 2022-10-03 11:59:33 -0500 |
---|---|---|
committer | Aaron Franke <arnfranke@yahoo.com> | 2022-10-03 13:40:31 -0500 |
commit | 094e8db97c3bb0f88aca32228a49f72cca745c9a (patch) | |
tree | ede391ec47605c1a4ae9da2047660f03a3f6ae2c /core/object | |
parent | 1371a97acfb9263aaca7fa8642e95ba68534fa19 (diff) |
Fix hide_slider vs no_slider inconsistency in editor property code
Diffstat (limited to 'core/object')
-rw-r--r-- | core/object/object.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/object/object.h b/core/object/object.h index 8ade5a204a..1f45c59a4c 100644 --- a/core/object/object.h +++ b/core/object/object.h @@ -50,7 +50,7 @@ class TypedArray; enum PropertyHint { PROPERTY_HINT_NONE, ///< no hint provided. - PROPERTY_HINT_RANGE, ///< hint_text = "min,max[,step][,or_greater][,or_less][,no_slider][,radians][,degrees][,exp][,suffix:<keyword>] range. + PROPERTY_HINT_RANGE, ///< hint_text = "min,max[,step][,or_greater][,or_less][,hide_slider][,radians][,degrees][,exp][,suffix:<keyword>] range. PROPERTY_HINT_ENUM, ///< hint_text= "val1,val2,val3,etc" PROPERTY_HINT_ENUM_SUGGESTION, ///< hint_text= "val1,val2,val3,etc" PROPERTY_HINT_EXP_EASING, /// exponential easing function (Math::ease) use "attenuation" hint string to revert (flip h), "positive_only" to exclude in-out and out-in. (ie: "attenuation,positive_only") |