Listview does not show the first element added until you modify the height of the window

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

I figured it out. My Mistake.