gui: single instance mode.

This commit is contained in:
2025-06-21 12:08:01 +08:00
parent d0a3496356
commit d4b36c2137
46 changed files with 3102 additions and 175 deletions

View File

@@ -2,7 +2,6 @@
#include <Util.h>
#include "Console.h"
#include "Helper.h"
#ifndef COMPILER_USE_MINGW
#include <crashelper.h>
@@ -21,7 +20,7 @@ int main(int argc, char* argv[])
backward::SetDumpFileSavePath(configDir + "/dumpfile");
backward::SetDumpLogSavePath(configDir + "/dumplog");
#else
backward::SetDumpLogSavePath(configDir + QDir::separator() + "dumplog");
backward::SetDumpLogSavePath(configDir + "/dumplog");
#endif
#endif
@@ -38,4 +37,4 @@ int main(int argc, char* argv[])
helper->Connect();
return app.exec();
}
}