From a3e934d2defa7831204ff2bd2e1bd030dcfae80c Mon Sep 17 00:00:00 2001 From: Ken Moore Date: Thu, 1 Dec 2016 08:24:00 -0500 Subject: Add the Lumina version to the bottom of the boot splash as well. --- src-qt5/core/lumina-desktop/BootSplash.cpp | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src-qt5/core/lumina-desktop/BootSplash.cpp') diff --git a/src-qt5/core/lumina-desktop/BootSplash.cpp b/src-qt5/core/lumina-desktop/BootSplash.cpp index e8a2decc..f7981670 100644 --- a/src-qt5/core/lumina-desktop/BootSplash.cpp +++ b/src-qt5/core/lumina-desktop/BootSplash.cpp @@ -3,6 +3,7 @@ #include #include +#include BootSplash::BootSplash() : QWidget(0, Qt::SplashScreen | Qt::X11BypassWindowManagerHint | Qt::WindowStaysOnTopHint | Qt::WindowDoesNotAcceptFocus), ui(new Ui::BootSplash){ ui->setupUi(this); @@ -15,6 +16,7 @@ BootSplash::BootSplash() : QWidget(0, Qt::SplashScreen | Qt::X11BypassWindowMana if(random.endsWith("\n")){ random.chop(1); } ui->label_welcome->setText( "\""+random+"\"" ); } + ui->label_version->setText( QString(tr("Version %1")).arg(LDesktopUtils::LuminaDesktopVersion()) ); } void BootSplash::showScreen(QString loading){ //update icon, text, and progress -- cgit