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)
|
bool ComboBox::addItem(const sf::String& item, const sf::String& id)
|
||||||
{
|
{
|
||||||
// Make room to add another item, until there are enough items
|
const bool ret = m_listBox->addItem(item, id);
|
||||||
if ((m_nrOfItemsToDisplay == 0) || (m_listBox->getItemCount() < m_nrOfItemsToDisplay))
|
updateListBoxHeight();
|
||||||
updateListBoxHeight();
|
return ret;
|
||||||
|
|
||||||
return m_listBox->addItem(item, id);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
Loading…
Reference in New Issue