From d0b2e644e7913cac0e481026e76714ca98660a72 Mon Sep 17 00:00:00 2001 From: Zach Fox Date: Tue, 5 Nov 2019 10:40:33 -0800 Subject: [PATCH] Fix DEV-2598: Upgrading from Old Launcher to QT Launcher now places Start Menu shortcuts in the right place --- launchers/qt/src/PathUtils.cpp | 2 +- launchers/qt/src/main.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/launchers/qt/src/PathUtils.cpp b/launchers/qt/src/PathUtils.cpp index 538303b564..d7e7b0af8b 100644 --- a/launchers/qt/src/PathUtils.cpp +++ b/launchers/qt/src/PathUtils.cpp @@ -28,7 +28,7 @@ QDir PathUtils::getLauncherDirectory() { } 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. diff --git a/launchers/qt/src/main.cpp b/launchers/qt/src/main.cpp index 9aef6990fa..75c35cd708 100644 --- a/launchers/qt/src/main.cpp +++ b/launchers/qt/src/main.cpp @@ -32,7 +32,7 @@ bool hasSuffix(const std::string& path, const std::string& suffix) { int main(int argc, char *argv[]) { QCoreApplication::setAttribute(Qt::AA_EnableHighDpiScaling); QCoreApplication::setOrganizationName("High Fidelity"); - QCoreApplication::setApplicationName("Launcher"); + QCoreApplication::setApplicationName("HQ Launcher"); Q_INIT_RESOURCE(resources); cleanLogFile();