Merge pull request #7004 from volzhs/fix-itemlist
Fix to fit stylebox with ItemList
This commit is contained in:
commit
6abe49f88d
|
@ -801,7 +801,10 @@ void ItemList::_notification(int p_what) {
|
|||
Size2 size = get_size();
|
||||
|
||||
float page = size.height-bg->get_minimum_size().height;
|
||||
int width = size.width - mw - bg->get_minimum_size().width;
|
||||
int width = size.width-bg->get_minimum_size().width;
|
||||
if (!scroll_bar->is_hidden()){
|
||||
width-=mw+bg->get_margin(MARGIN_RIGHT);
|
||||
}
|
||||
scroll_bar->set_page(page);
|
||||
|
||||
draw_style_box(bg,Rect2(Point2(),size));
|
||||
|
|
Loading…
Reference in New Issue