Fix spinboxes bad look

This commit is contained in:
Gilles Roudiere 2017-08-21 21:40:11 +02:00
parent 4717d37bfa
commit f730846fe9

View File

@ -192,7 +192,7 @@ void SpinBox::_notification(int p_what) {
int w = updown->get_width();
if (w != last_w) {
line_edit->set_margin(MARGIN_RIGHT, w);
line_edit->set_margin(MARGIN_RIGHT, -w);
last_w = w;
}