Merge pull request #7004 from volzhs/fix-itemlist

Fix to fit stylebox with ItemList
This commit is contained in:
Rémi Verschelde 2016-11-02 22:10:30 +01:00 committed by GitHub
commit 6abe49f88d

View file

@ -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));