diff --git a/src/lib/other/statusbarmessage.cpp b/src/lib/other/statusbarmessage.cpp index dc045f92d..900f7c8b6 100644 --- a/src/lib/other/statusbarmessage.cpp +++ b/src/lib/other/statusbarmessage.cpp @@ -116,7 +116,8 @@ StatusBarMessage::StatusBarMessage(BrowserWindow* window) void StatusBarMessage::showMessage(const QString &message) { if (m_window->statusBar()->isVisible()) { - m_window->statusBar()->showMessage(message); + const static QChar LRE(0x202a); + m_window->statusBar()->showMessage(message.isRightToLeft() ? message : (LRE + message)); } #ifdef Q_OS_WIN else if (mApp->activeWindow() == m_window) {