diff options
author | Juan Linietsky <reduzio@gmail.com> | 2018-05-16 09:13:41 -0300 |
---|---|---|
committer | Juan Linietsky <reduzio@gmail.com> | 2018-05-16 09:13:41 -0300 |
commit | dfd1331690fab7e634e2e18fd7269bab8f759b3a (patch) | |
tree | 03c485b382ab5d281a1f5d534df8ac4a499e8df3 /editor/editor_properties.h | |
parent | 031a4453684c75e2b5082aa39b8256f88faf3158 (diff) |
Allow editing of some unbound properties when hinted (or no range hinted)
Diffstat (limited to 'editor/editor_properties.h')
-rw-r--r-- | editor/editor_properties.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/editor/editor_properties.h b/editor/editor_properties.h index 0a831bfcfe..4fcef5fdae 100644 --- a/editor/editor_properties.h +++ b/editor/editor_properties.h @@ -201,7 +201,7 @@ protected: public: virtual void update_property(); - void setup(int p_min, int p_max); + void setup(int p_min, int p_max, bool p_allow_greater, bool p_allow_lesser); EditorPropertyInteger(); }; @@ -231,7 +231,7 @@ protected: public: virtual void update_property(); - void setup(double p_min, double p_max, double p_step, bool p_no_slider, bool p_exp_range); + void setup(double p_min, double p_max, double p_step, bool p_no_slider, bool p_exp_range, bool p_greater, bool p_lesser); EditorPropertyFloat(); }; |