aboutsummaryrefslogtreecommitdiff
path: root/src/qmmpui/aboutdialog.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/qmmpui/aboutdialog.cpp')
-rw-r--r--src/qmmpui/aboutdialog.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/qmmpui/aboutdialog.cpp b/src/qmmpui/aboutdialog.cpp
index 1d807027d..ef79034e4 100644
--- a/src/qmmpui/aboutdialog.cpp
+++ b/src/qmmpui/aboutdialog.cpp
@@ -56,6 +56,10 @@ QString AboutDialog::loadAbout()
text.append("<head>");
text.append("<META content=\"text/html; charset=UTF-8\">");
text.append("</head>");
+ if(layoutDirection() == Qt::RightToLeft)
+ text.append("<div dir='rtl'>");
+ else
+ text.append("<div>");
text.append("<h3>"+tr("Qt-based Multimedia Player (Qmmp)")+"</h3>");
text.append("<p>"+getStringFromResource(":description")+"</p>");
@@ -114,6 +118,7 @@ QString AboutDialog::loadAbout()
text.append("</li>");
}
text.append("</ul>");
+ text.append("<div>");
return text;
}