fix bottom row of saves in the save browser being cut off

This commit is contained in:
jacob1 2013-10-18 16:57:53 -04:00
parent fd6da26b73
commit 6edb96ee51

View File

@ -314,7 +314,7 @@ void FileBrowserActivity::OnTick(float dt)
itemList->AddChild(*iter);
}
componentsQueue.clear();
itemList->InnerSize.Y = (buttonHeight+(buttonPadding*2))*fileY;
itemList->InnerSize.Y = (buttonHeight+(buttonPadding*2))*(fileY+1);
if(!componentsQueue.size())
progressBar->Visible = false;
}