When inserting bullet and number lists using the built in options for a telerik rad rich text box. The font size appears to be different.

I can correct it by changing font size to something else and changing back to what I want. I have default font size set to 12 and font family set to times new roman for the radRichTextBox. Any ideas?
I can correct it by changing font size to something else and changing back to what I want. I have default font size set to 12 and font family set to times new roman for the radRichTextBox. Any ideas?
When I explicitly change font size from 12 to 11 and back to 12. It is saved as: <t:Span FontFamily=\"Times New Roman\" FontSize=\"xx\" Text=\"asd\" />.
So the radDocument is not storing the font family or font size of the items in the list.
The FontFamily setting doesn't occur in the Span element originally because when the FontFamilty is not explicitly set, it is fetched from the global styles of the document. Once you apply the FontFamily manually, this sets the property explicitly. This is why you see the behavior described in your previous reply.
Even if I change the FontFamily only on some of the items, and then explicitly and save and load the document, there are no different bullets, as long as the selected font matches the one in the default styles. If you see a difference, you can double check for any extra settings related to the styles repository.
If you can prepare some dummy runnable code that recreates your scenario (save and load a document), I can check it and see what exactly happens.