diff --git a/playback/player/qt/main.cpp b/playback/player/qt/main.cpp index 9a8adf6150..b4495225cb 100644 --- a/playback/player/qt/main.cpp +++ b/playback/player/qt/main.cpp @@ -29,7 +29,9 @@ int main(int argc, char *argv[]) { - QGuiApplication app(argc, argv); + /* Use QApplication instead of QGuiApplication since the latter is needed + * for widgets like the QFileDialog to work */ + QApplication app(argc, argv); int result; QCommandLineParser parser;