-
-
Notifications
You must be signed in to change notification settings - Fork 236
Open
Description
Env:
- Qt 6.7.2
- CMake 3.30
- MacBook Pro M3(macOS 14.6.1)
When I first initialized the project, compiled and ran it, the program started up normally. However, when I tried to start it again, the program would not start, and there was no output in the console. After replacing it with QApplication, the program ran normally.
After I cleared the cache, the program was also difficult to run. After restarting my computer, the program was able to run normally once.
I'm not sure if it's related to this issue #136
My code:
int main(int argc, char* argv[])
{
SingleApplication a(argc, argv);
a.setApplicationName("FlowD");
// ...init...
MainWindow w;
w.show();
QObject::connect(&a, &SingleApplication::instanceStarted, &w, &MainWindow::show);
return QApplication::exec();
}tobtoht, tsukishima1321 and jps05
Metadata
Metadata
Assignees
Labels
No labels