-
Bug
-
Resolution: Unresolved
-
P2: Important
-
None
-
6.8.3, 6.9.2
-
None
-
macOS 15.6
Win 11
When using TextEdit, the selectedTextColor property does not apply correctly to text inside an HTML <ol> element. Instead of rendering the selected text in the specified color (e.g., "red"), the default selection color is used or the color is not applied at all. See attached screen.
HTML Example:
TextEdit {
textFormat: TextEdit.RichText
selectedTextColor: "red"
selectionColor: Qt.rgba(0, 128, 0, 0.5)
text: "<ol>
<li>aaa</li>
<li>bbb</li>
</ol>"
}