Fixed ComboBox::addItem incorrectly setting the ListBox size
parent
999fe00a63
commit
4f17ea26d6
|
@ -247,11 +247,9 @@ namespace tgui
|
|||
|
||||
bool ComboBox::addItem(const sf::String& item, const sf::String& id)
|
||||
{
|
||||
// Make room to add another item, until there are enough items
|
||||
if ((m_nrOfItemsToDisplay == 0) || (m_listBox->getItemCount() < m_nrOfItemsToDisplay))
|
||||
const bool ret = m_listBox->addItem(item, id);
|
||||
updateListBoxHeight();
|
||||
|
||||
return m_listBox->addItem(item, id);
|
||||
return ret;
|
||||
}
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||
|
|
Loading…
Reference in New Issue