Fix removal of rect_min_size not triggering resize

fixes #46672

(cherry picked from commit c8868fcaab)
This commit is contained in:
Johannes 2021-03-05 18:24:06 +01:00 committed by Rémi Verschelde
parent 58393b544b
commit a3c67dd3fc
No known key found for this signature in database
GPG key ID: C3336907360768E1

View file

@ -292,15 +292,11 @@ void Control::_update_minimum_size() {
return;
Size2 minsize = get_combined_minimum_size();
if (minsize.x > data.size_cache.x ||
minsize.y > data.size_cache.y) {
_size_changed();
}
data.updating_last_minimum_size = false;
if (minsize != data.last_minimum_size) {
data.last_minimum_size = minsize;
_size_changed();
emit_signal(SceneStringNames::get_singleton()->minimum_size_changed);
}
}