turn on -m by default on macOS

This commit is contained in:
Le Tan 2020-04-11 10:25:19 +08:00
parent 42d7ae0f9a
commit 49e7ca0fa0

View File

@ -120,7 +120,11 @@ void VLogger(QtMsgType type, const QMessageLogContext &context, const QString &m
int main(int argc, char *argv[])
{
#if defined(Q_OS_MACOS) || defined(Q_OS_MAC)
bool allowMultiInstances = true;
#else
bool allowMultiInstances = false;
#endif
for (int i = 1; i < argc; ++i) {
if (!qstrcmp(argv[i], "-m")) {
allowMultiInstances = true;