QT StarPilot Logo

This commit is contained in:
whoisdomi
2026-06-01 09:02:18 -05:00
committed by firestar5683
parent 6eb513501d
commit 3486c695b8
+6
View File
@@ -231,6 +231,12 @@ SetupWidget::SetupWidget(QWidget* parent) : QFrame(parent) {
QVBoxLayout *content_layout = new QVBoxLayout(content);
content_layout->setContentsMargins(0, 0, 0, 0);
content_layout->setSpacing(30);
QLabel *logo = new QLabel;
QPixmap logo_pix("../assets/images/StarPilotLogo.png");
logo->setPixmap(logo_pix.scaled(750, 770, Qt::KeepAspectRatio, Qt::SmoothTransformation));
logo->setAlignment(Qt::AlignCenter);
content_layout->addWidget(logo, 0, Qt::AlignCenter);
content_layout->addStretch();
mainLayout->addWidget(content);