From 0213483eff429574bcff3b054c045c5fa49105f8 Mon Sep 17 00:00:00 2001 From: Kubat <mael.martin31@gmail.com> Date: Fri, 20 Aug 2021 15:13:59 +0200 Subject: [PATCH] UI: Update about message --- src/UI/AboutWindow.cc | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/src/UI/AboutWindow.cc b/src/UI/AboutWindow.cc index 6c779132..4bb7e87b 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, © 2016 The Qt" + " Company Ltd. and other contributors. Vivy is © 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, -- GitLab