1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

ListBox: Avoid calling updateContent in contructor

This commit is contained in:
reuk 2022-08-31 15:15:02 +01:00
parent b324a50e82
commit a1bb7aeead
No known key found for this signature in database
GPG key ID: FCB43929F012EE5C

View file

@ -525,7 +525,7 @@ ListBox::ListBox (const String& name, ListBoxModel* const m)
setFocusContainerType (FocusContainerType::focusContainer);
colourChanged();
setModel (m);
assignModelPtr (m);
}
ListBox::~ListBox()