mirror of
https://github.com/godotengine/godot.git
synced 2025-10-19 07:53:26 +00:00
Remove unused "default" range hint min/max
This commit is contained in:
parent
88547a19e8
commit
7991b60681
1 changed files with 2 additions and 2 deletions
|
@ -3591,8 +3591,8 @@ bool EditorInspectorDefaultPlugin::parse_property(Object *p_object, const Varian
|
|||
struct EditorPropertyRangeHint {
|
||||
bool or_greater = true;
|
||||
bool or_less = true;
|
||||
double min = -99999.0;
|
||||
double max = 99999.0;
|
||||
double min = 0.0;
|
||||
double max = 0.0;
|
||||
double step = 1.0;
|
||||
String suffix;
|
||||
bool exp_range = false;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue