mirror of
https://github.com/godotengine/godot.git
synced 2026-01-03 18:11:19 +03:00
Fix super call in various get_configuration_warnings methods
This commit is contained in:
@@ -31,7 +31,7 @@
|
||||
#include "range.h"
|
||||
|
||||
PackedStringArray Range::get_configuration_warnings() const {
|
||||
PackedStringArray warnings = Node::get_configuration_warnings();
|
||||
PackedStringArray warnings = Control::get_configuration_warnings();
|
||||
|
||||
if (shared->exp_ratio && shared->min <= 0) {
|
||||
warnings.push_back(RTR("If \"Exp Edit\" is enabled, \"Min Value\" must be greater than 0."));
|
||||
|
||||
Reference in New Issue
Block a user