Skip to content

Commit 73da0d2

Browse files
committed
Merge pull request godotengine#109884 from aaronfranke/range-min-max
Remove nearly-unused "default" range hint min/max
2 parents 1d386b5 + 7991b60 commit 73da0d2

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)