mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-10 09:19:01 +00:00
Changed: Install shorcuts in Applications instead of /Applications
This commit is contained in:
parent
eeb2f09a08
commit
8ea1c911c2
1 changed files with 10 additions and 1 deletions
|
@ -307,7 +307,16 @@ QString CConfigFile::getDesktopDirectory() const
|
|||
|
||||
QString CConfigFile::getMenuDirectory() const
|
||||
{
|
||||
return QStandardPaths::writableLocation(QStandardPaths::ApplicationsLocation) + "/" + QApplication::applicationName();
|
||||
QString applicationLocation;
|
||||
|
||||
#ifdef O_OS_MAC
|
||||
// QStandardPaths::ApplicationsLocation returns read-only location so fix it, will be installed in ~/Applications
|
||||
applicationLocation = QStandardPaths::writableLocation(QStandardPaths::HomeLocation) + "/Applications";
|
||||
#else
|
||||
applicationLocation = QStandardPaths::writableLocation(QStandardPaths::ApplicationsLocation);
|
||||
#endif
|
||||
|
||||
return applicationLocation + "/" + QApplication::applicationName();
|
||||
}
|
||||
|
||||
bool CConfigFile::has64bitsOS()
|
||||
|
|
Loading…
Reference in a new issue