Files
godot/scene/gui
Rémi Verschelde 966c68badd Range: Remove min/max check added in #33908
This wasn't a very good idea as it puts too strict requirements on how
to set `min` and `max` values. For example, since the default min and
max are 0 and 100, this triggers an error:

```
set_min(256)
set_max(16384)
```

Since `min` will be higher than `max` temporarily. It can be worked
around by setting max first, but it's not really intuitive. I'll relax
the requirement as it's only a problem in `get_as_ratio`, which already
has a check.

Fix another min == max occurrence.
2019-11-26 12:11:21 +01:00
..
2019-07-30 12:03:00 +01:00
2019-08-12 04:26:38 -05:00
2019-10-31 16:58:53 -03:00
2019-08-12 04:26:38 -05:00
2019-08-12 04:26:38 -05:00
2019-08-12 04:26:38 -05:00
2019-08-12 04:26:38 -05:00
2019-06-28 12:42:42 +03:00
2019-06-28 12:42:42 +03:00
2019-06-20 16:59:48 +02:00
2019-11-07 16:39:14 +01:00
2019-09-30 13:56:20 +04:00
2019-09-30 13:56:20 +04:00