Merge pull request #81383 from AThousandShips/valid_remove

Remove unnecessary validity checks from `Button` and `TextureRect`
This commit is contained in:
Rémi Verschelde 2023-09-07 13:53:20 +02:00
commit 4bf3de7853
No known key found for this signature in database
GPG key ID: C3336907360768E1
2 changed files with 4 additions and 8 deletions

View file

@ -554,10 +554,8 @@ void Button::set_icon(const Ref<Texture2D> &p_icon) {
}
void Button::_texture_changed() {
if (icon.is_valid()) {
queue_redraw();
update_minimum_size();
}
queue_redraw();
update_minimum_size();
}
Ref<Texture2D> Button::get_icon() const {

View file

@ -189,10 +189,8 @@ bool TextureRect::_set(const StringName &p_name, const Variant &p_value) {
#endif
void TextureRect::_texture_changed() {
if (texture.is_valid()) {
queue_redraw();
update_minimum_size();
}
queue_redraw();
update_minimum_size();
}
void TextureRect::set_texture(const Ref<Texture2D> &p_tex) {