Skip to content

Commit

Permalink
make style explicit
Browse files Browse the repository at this point in the history
  • Loading branch information
GoodCoder666 committed Dec 14, 2024
1 parent 469705f commit 4631d95
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,9 @@
#include <QApplication>

int main(int argc, char* argv[]) {
QApplication a(argc, argv);
MainWindow w;
w.show();
return a.exec();
QApplication app(argc, argv);
app.setStyle("windows11");
MainWindow window;
window.show();
return app.exec();
}

0 comments on commit 4631d95

Please sign in to comment.