Details
-
Bug
-
Resolution: Invalid
-
P2: Important
-
None
-
5.3.2, 5.4.0 Alpha
-
None
-
Windows 7
Description
Run the following example The text should be started with #oradtest, instad it is written as oradtest#.
#include <QApplication> #include <QTextEdit> int main(int argc, char *argv[]) { QApplication a(argc, argv); QTextEdit w; QString str("#oradtest בוקר טוב עולם Test #oradtest בוקר טוב עולם Test" "#oradtest בוקר טוב עולם Test #oradtest בוקר טוב עולם Test #oradtest בוקר" "טוב עולם "); QString html = QString("<html><body><p dir='rtl'>%1</p></body></html> ").arg(str); w.setHtml(html); w.show(); return a.exec(); }
Attachments
Issue Links
- relates to
-
QTBUG-126867 Mixing RTL and LTR language breaks QML Text layout
- Closed