Merge pull request #89956 from KoBeWi/warning!_self_destruct_sequence_activated

Remove Control z-index warning
This commit is contained in:
Rémi Verschelde 2024-04-05 12:16:00 +02:00
commit 54116086af
No known key found for this signature in database
GPG key ID: C3336907360768E1

View file

@ -241,10 +241,6 @@ PackedStringArray Control::get_configuration_warnings() const {
warnings.push_back(RTR("The Hint Tooltip won't be displayed as the control's Mouse Filter is set to \"Ignore\". To solve this, set the Mouse Filter to \"Stop\" or \"Pass\"."));
}
if (get_z_index() != 0) {
warnings.push_back(RTR("Changing the Z index of a control only affects the drawing order, not the input event handling order."));
}
return warnings;
}