Update minimum size of SpinBox on theme change

This commit is contained in:
Tomasz Chabora 2019-12-10 02:11:22 +01:00
parent 269145a346
commit 6e1dc7b2fe

View file

@ -211,6 +211,10 @@ void SpinBox::_notification(int p_what) {
_adjust_width_for_icon(get_icon("updown"));
_value_changed(0);
} else if (p_what == NOTIFICATION_THEME_CHANGED) {
call_deferred("minimum_size_changed");
get_line_edit()->call_deferred("minimum_size_changed");
}
}