Fix removal of rect_min_size
not triggering resize
fixes #46672
(cherry picked from commit c8868fcaab
)
This commit is contained in:
parent
58393b544b
commit
a3c67dd3fc
@ -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);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user