summaryrefslogtreecommitdiff
path: root/ui/qt5/main.cc
diff options
context:
space:
mode:
authorA. Wilcox <AWilcox@Wilcox-Tech.com>2019-12-14 16:10:16 -0600
committerA. Wilcox <AWilcox@Wilcox-Tech.com>2019-12-14 16:10:16 -0600
commit3a0c398b72f463d09bc87e598fbb6889000b6232 (patch)
treef291fe89a2004e34b3b4bdaf01e34ea18b7ef620 /ui/qt5/main.cc
parent37d282b7a12c884f8441317c89ee3703bd29210c (diff)
downloadhorizon-3a0c398b72f463d09bc87e598fbb6889000b6232.tar.gz
horizon-3a0c398b72f463d09bc87e598fbb6889000b6232.tar.bz2
horizon-3a0c398b72f463d09bc87e598fbb6889000b6232.tar.xz
horizon-3a0c398b72f463d09bc87e598fbb6889000b6232.zip
Qt UI: Implement user avatar selection
Diffstat (limited to 'ui/qt5/main.cc')
-rw-r--r--ui/qt5/main.cc6
1 files changed, 4 insertions, 2 deletions
diff --git a/ui/qt5/main.cc b/ui/qt5/main.cc
index fe97b51..7ebe113 100644
--- a/ui/qt5/main.cc
+++ b/ui/qt5/main.cc
@@ -27,10 +27,12 @@ public:
void reject() override;
};
-WaitDialog::WaitDialog(QWidget *parent) : QDialog(parent) {
+WaitDialog::WaitDialog(QWidget *parent) : QDialog(parent,
+ Qt::FramelessWindowHint) {
setWindowTitle(tr("Loading..."));
QVBoxLayout *layout = new QVBoxLayout;
- QLabel *descLabel = new QLabel(tr("System Installation is loading.\n\nPlease wait a moment."));
+ QLabel *descLabel = new QLabel(tr("System Installation is loading.\n\n"
+ "Please wait a moment."));
descLabel->setAlignment(Qt::AlignCenter);
layout->addWidget(descLabel);
setLayout(layout);