summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2019-10-13 07:53:28 +0200
committerGitHub <noreply@github.com>2019-10-13 07:53:28 +0200
commita9fe81efbd748a16a0c01d822d0b08eacea04880 (patch)
tree592934f6c8bf13a768c1a9f85801376f47e7f26a
parent9412b595d3170a40c4140f58825ad4d35416e571 (diff)
parentf7d9f070e1d8dbb8514738997f57ffb1019e4e52 (diff)
Merge pull request #32789 from DavidSichma/precision
Increased step precision
-rw-r--r--editor/editor_properties.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/editor_properties.cpp b/editor/editor_properties.cpp
index 460f75eef0..e978713c34 100644
--- a/editor/editor_properties.cpp
+++ b/editor/editor_properties.cpp
@@ -2925,7 +2925,7 @@ void EditorInspectorDefaultPlugin::parse_begin(Object *p_object) {
bool EditorInspectorDefaultPlugin::parse_property(Object *p_object, Variant::Type p_type, const String &p_path, PropertyHint p_hint, const String &p_hint_text, int p_usage) {
- float default_float_step = EDITOR_GET("interface/inspector/default_float_step");
+ double default_float_step = EDITOR_GET("interface/inspector/default_float_step");
switch (p_type) {