mirror of
https://github.com/overte-org/overte.git
synced 2025-08-08 11:58:10 +02:00
Fix DEV-2598: Upgrading from Old Launcher to QT Launcher now places Start Menu shortcuts in the right place
This commit is contained in:
parent
99f007349e
commit
d0b2e644e7
2 changed files with 2 additions and 2 deletions
|
@ -28,7 +28,7 @@ QDir PathUtils::getLauncherDirectory() {
|
||||||
}
|
}
|
||||||
|
|
||||||
QDir PathUtils::getApplicationsDirectory() {
|
QDir PathUtils::getApplicationsDirectory() {
|
||||||
return QDir(QStandardPaths::writableLocation(QStandardPaths::ApplicationsLocation)).absoluteFilePath("Launcher");
|
return QDir(QStandardPaths::writableLocation(QStandardPaths::ApplicationsLocation)).absoluteFilePath("HQ");
|
||||||
}
|
}
|
||||||
|
|
||||||
// The client directory is where interface is installed to.
|
// The client directory is where interface is installed to.
|
||||||
|
|
|
@ -32,7 +32,7 @@ bool hasSuffix(const std::string& path, const std::string& suffix) {
|
||||||
int main(int argc, char *argv[]) {
|
int main(int argc, char *argv[]) {
|
||||||
QCoreApplication::setAttribute(Qt::AA_EnableHighDpiScaling);
|
QCoreApplication::setAttribute(Qt::AA_EnableHighDpiScaling);
|
||||||
QCoreApplication::setOrganizationName("High Fidelity");
|
QCoreApplication::setOrganizationName("High Fidelity");
|
||||||
QCoreApplication::setApplicationName("Launcher");
|
QCoreApplication::setApplicationName("HQ Launcher");
|
||||||
|
|
||||||
Q_INIT_RESOURCE(resources);
|
Q_INIT_RESOURCE(resources);
|
||||||
cleanLogFile();
|
cleanLogFile();
|
||||||
|
|
Loading…
Reference in a new issue