When adding an item to the listView then calling Refresh, the item only appears after I modify the height of the window. Is there something I’m doing wrong?
addModifierButton.clicked += () =>
{
Create();
listView.Refresh();
listView.ScrollToItem(m_EffectDefinition.modifiers.Count - 1);
};