diff --git a/CellframeNodeTray/NodeTrayCommandController.cpp b/CellframeNodeTray/NodeTrayCommandController.cpp index fefbcce54c036dbf190249c29719ba7c73a58453..270fc70e31b9560cf4ba260e103cdcc6a914d965 100644 --- a/CellframeNodeTray/NodeTrayCommandController.cpp +++ b/CellframeNodeTray/NodeTrayCommandController.cpp @@ -253,7 +253,7 @@ QString NodeTrayCommandController::getConfigPath() std::wstring path; GetStringRegKey(hKey, L"Common Documents", path, L""); std::string stdpath(path.begin(),path.end()); - return QString::fromWCharArray(path.c_str()); + return QString(QString::fromWCharArray(path.c_str()) + "/cellframe-node"); #endif } diff --git a/CellframeNodeTray/main.qml b/CellframeNodeTray/main.qml index 46d7af718cd44f1d7fae2471a2a0415a9c84ab70..3e02d5ed888275e82c9e34057eb51f7819f2e2d0 100644 --- a/CellframeNodeTray/main.qml +++ b/CellframeNodeTray/main.qml @@ -57,17 +57,17 @@ ApplicationWindow { } } MenuItem { - visible: CURRENT_OS === "win" ? true : CURRENT_OS === "macos" ? false : autostartItemMenu.status + visible: CURRENT_OS === "macos" ? false : autostartItemMenu.status text: qsTr("Stop cellframe-node") onTriggered: trayCommandController.serviceCommand(3) } MenuItem { - visible: CURRENT_OS === "win" ? true : CURRENT_OS === "macos" ? false : autostartItemMenu.status + visible: CURRENT_OS === "macos" ? false : autostartItemMenu.status text: qsTr("Start cellframe-node") onTriggered: trayCommandController.serviceCommand(4) } MenuItem { - visible: CURRENT_OS === "win" ? true : CURRENT_OS === "macos" ? false : autostartItemMenu.status + visible: CURRENT_OS === "macos" ? false : autostartItemMenu.status text: qsTr("Restart cellframe-node") onTriggered: trayCommandController.serviceCommand(5) }