From f7d9f070e1d8dbb8514738997f57ffb1019e4e52 Mon Sep 17 00:00:00 2001 From: David Sichma Date: Sun, 13 Oct 2019 00:29:53 +0200 Subject: [PATCH] Increased step precision Results in nicer numbers for float properties like 20.0 instead of 20.000001 --- editor/editor_properties.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/editor/editor_properties.cpp b/editor/editor_properties.cpp index 460f75eef0f..e978713c348 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) {