Fix super call in various get_configuration_warnings methods

This commit is contained in:
A Thousand Ships
2024-06-19 16:40:50 +02:00
parent b6223c0df0
commit 9dc231366d
34 changed files with 36 additions and 36 deletions

View File

@ -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."));