Skip to content

Commit

Permalink
Update about.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
jlqwer committed Jul 17, 2023
1 parent 938ffa0 commit 77ccbaa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion about.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ About::About(QWidget *parent) :
QDialog(parent),
ui(new Ui::About)
{
this->setWindowFlags(Qt::FramelessWindowHint);
this->setWindowFlags(Qt::FramelessWindowHint| Qt::WindowStaysOnTopHint);
this->setAttribute(Qt::WA_TranslucentBackground);
ui->setupUi(this);
this->ui->version->setText(QString("Version %1").arg(QApplication::applicationVersion()));
Expand Down

0 comments on commit 77ccbaa

Please sign in to comment.