diff --git a/src/UI/AboutWindow.cc b/src/UI/AboutWindow.cc
index 6c77913294b495e4fce3521ddb5144f8f175fba7..4bb7e87b24f480d6f45cb70eb4e6c33ac08cd0a9 100644
--- a/src/UI/AboutWindow.cc
+++ b/src/UI/AboutWindow.cc
@@ -17,7 +17,16 @@ using namespace Vivy;
 
 static const char *aboutContent =
     "<body>"
-    "  <p>Vivy is a replacement for Aegisub, writen in Qt5+and with less segfaults - hopefully.</p>"
+    "  <p>Vivy is a replacement for Aegisub, writen in Qt5+and with less"
+    "     segfaults - hopefully.</p>"
+    "  <p>This software is licenced under the LGPL v3.0 or latter. The"
+    "     FakeVim part is imported from QtCreator, &copy; 2016 The Qt"
+    "     Company Ltd. and other contributors. Vivy is &copy; Vivy"
+    "     contributors.</p>"
+    "  <p>Contributors:<ul>"
+    "    <li>Elliu</li>"
+    "    <li>Kubat</li>"
+    "  </ul></p>"
     "</body>";
 
 static const char *libContent =
@@ -45,6 +54,7 @@ AboutWindow::SimpleLabel::SimpleLabel(QWidget *parent, const char *text)
                             Qt::LinksAccessibleByKeyboard);
     setText(QString(text));
     setAlignment(Qt::AlignJustify | Qt::AlignTop);
+    setWordWrap(true);
 }
 
 AboutWindow::LicenceLabel::LicenceLabel(QWidget *parent, const QString &url,