The QML Plasma Component TextArea doesn't react to, at least, the horizontalAlignment, verticalAlignment and font.bold properties like, for example, the Qt component TextEdit. Reproducible: Always Steps to Reproduce: 1.Create a QML plasmoid which main Item is a TextArea 2.Assign the following properties: * horizontalAlignment: TextEdit.AlignRight * verticalAlignment: TextEdit.AlignVCenter * font.bold: true 3. Run it Actual Results: The text remains unchanged. Expected Results: The text should be bold, aligned horizontally to the left and vertically to the center.
Please set the version for your report, else it is incomplete.
(In reply to comment #1) > Please set the version for your report, else it is incomplete. I spotted it in the compiled sources, so it's 4.9-git, I suppose? And this was partially fixed: https://git.reviewboard.kde.org/r/106702/
It turns out that bold isn't a property of Font, so this is fixed. Commit 912c70372b311da8ae35f4051219d67da4e65d76 fixes the issue.