From 79ceb45fae6e1bc961215c891dd1398eb3be07d0 Mon Sep 17 00:00:00 2001 From: Hannah von Reth Date: Wed, 26 May 2021 10:22:36 +0200 Subject: [PATCH] Fix Windows builds (cherry picked from commit 92fcff1dcebc64d13e25c4a5837c7561b45655e0) --- src/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.cpp b/src/main.cpp index 008e4c955..14c1be541 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -84,7 +84,7 @@ int main(int argc, char *argv[]) freopen("CONOUT$", "w", stderr); } - QGuiApplication::setStyle(QStringLiteral("breeze")); + QApplication::setStyle(QStringLiteral("breeze")); auto font = app.font(); font.setPointSize(10); app.setFont(font);