Hello everyone.
I'm having troubles loading defaults into a combobox, from a collection.
I have a ComboBox that's defined like this:
The SelectedItems is a collection that's collected by calling
ClearCollect(SelectedItems,ComboBox1.SelectedItems);SaveData(SelectedItems, "SavedSelectedItems");
So it's expected that when the SelectedItems collection isn't empty, it will have those entries selected as default.
However, this is only partly working.
The preview of the ComboBox looks fine, like this:
However, when you press it, the items aren't actually selected.

What am I doing wrong?
I uploaded a simple reproduction project and attached to this topic, if you want to try it out and see what I mean.
Thanks