diff options
| -rw-r--r-- | Swift/QtUI/QtSwift.cpp | 8 | 
1 files changed, 7 insertions, 1 deletions
| diff --git a/Swift/QtUI/QtSwift.cpp b/Swift/QtUI/QtSwift.cpp index 3a56637..ef02096 100644 --- a/Swift/QtUI/QtSwift.cpp +++ b/Swift/QtUI/QtSwift.cpp @@ -66,7 +66,13 @@ QtSwift::QtSwift(po::variables_map options) : autoUpdater_(NULL) {  	QCoreApplication::setOrganizationDomain(SWIFT_ORGANIZATION_DOMAIN);  	QCoreApplication::setApplicationVersion(buildVersion); -	int numberOfAccounts = options["multi-account"].as<int>(); +	int numberOfAccounts = 1; +	try { +		numberOfAccounts = options["multi-account"].as<int>(); +	} catch (...) { +		/* This seems to fail on a Mac when the .app is launched directly (the usual path).*/ +		numberOfAccounts = 1; +	}  	tabs_ = options.count("no-tabs") && !(splitter_ > 0) ? NULL : new QtChatTabs();  	settings_ = new QtSettingsProvider(); | 
 Swift
 Swift