|
|
|
@ -66,7 +66,7 @@ WelcomePage::WelcomePage( RequirementsChecker* requirementsChecker, QWidget* par
|
|
|
|
|
connect( ui->aboutButton, &QPushButton::clicked,
|
|
|
|
|
this, [ this ]
|
|
|
|
|
{
|
|
|
|
|
QMessageBox::about( this,
|
|
|
|
|
QMessageBox mb( QMessageBox::Information,
|
|
|
|
|
tr( "About %1 installer" )
|
|
|
|
|
.arg( CALAMARES_APPLICATION_NAME ),
|
|
|
|
|
tr(
|
|
|
|
@ -84,7 +84,14 @@ WelcomePage::WelcomePage( RequirementsChecker* requirementsChecker, QWidget* par
|
|
|
|
|
.arg( CALAMARES_APPLICATION_NAME )
|
|
|
|
|
.arg( CALAMARES_VERSION )
|
|
|
|
|
.arg( Calamares::Branding::instance()->string(
|
|
|
|
|
Calamares::Branding::VersionedName ) ) );
|
|
|
|
|
Calamares::Branding::VersionedName ) ),
|
|
|
|
|
QMessageBox::Ok,
|
|
|
|
|
this );
|
|
|
|
|
mb.setIconPixmap( CalamaresUtils::defaultPixmap( CalamaresUtils::Squid,
|
|
|
|
|
CalamaresUtils::Original,
|
|
|
|
|
QSize( CalamaresUtils::defaultFontHeight() * 6,
|
|
|
|
|
CalamaresUtils::defaultFontHeight() * 6 ) ) );
|
|
|
|
|
mb.exec();
|
|
|
|
|
} );
|
|
|
|
|
|
|
|
|
|
ui->verticalLayout->insertStretch( 3 );
|
|
|
|
|