Skip to content

Commit 7991b60

Browse files
committed
Remove unused "default" range hint min/max
1 parent 88547a1 commit 7991b60

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

editor/inspector/editor_properties.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3591,8 +3591,8 @@ bool EditorInspectorDefaultPlugin::parse_property(Object *p_object, const Varian
35913591
struct EditorPropertyRangeHint {
35923592
bool or_greater = true;
35933593
bool or_less = true;
3594-
double min = -99999.0;
3595-
double max = 99999.0;
3594+
double min = 0.0;
3595+
double max = 0.0;
35963596
double step = 1.0;
35973597
String suffix;
35983598
bool exp_range = false;

0 commit comments

Comments
 (0)