1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-28 16:07:14 +00:00
This commit is contained in:
Juan Linietsky
2016-08-02 19:11:47 -03:00
79 changed files with 1339 additions and 1545 deletions

View File

@@ -3051,10 +3051,10 @@ void PropertyEditor::update_tree() {
} else {
if (p.type == Variant::REAL) {
item->set_range_config(1, -65536, 65535, 0.001);
item->set_range_config(1, -16777216, 16777216, 0.001);
} else {
item->set_range_config(1, -65536, 65535, 1);
item->set_range_config(1, -2147483647, 2147483647, 1);
}
};