https://bugs.kde.org/show_bug.cgi?id=323994
Martin Sandsmark <martin.sandsm...@kde.org> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |martin.sandsm...@kde.org --- Comment #4 from Martin Sandsmark <martin.sandsm...@kde.org> --- It seems like this might be because bidi disables Qt::AlignBottom? Not sure how something like this would affect things: diff --git a/src/TerminalDisplay.cpp b/src/TerminalDisplay.cpp index dd91177..40b0d49 100644 --- a/src/TerminalDisplay.cpp +++ b/src/TerminalDisplay.cpp @@ -863,7 +863,7 @@ void TerminalDisplay::drawCharacters(QPainter& painter, // // This was discussed in: http://lists.kde.org/?t=120552223600002&r=1&w=2 if (_bidiEnabled) { - painter.drawText(rect, 0, text); + painter.drawText(rect, Qt::AlignBottom, text); } else { // See bug 280896 for more info painter.drawText(rect, Qt::AlignBottom, LTR_OVERRIDE_CHAR + text); -- You are receiving this mail because: You are watching all bug changes.