From 4f65f0379f408f3c2da15c0711576bad55a5e52d Mon Sep 17 00:00:00 2001 From: "Scott E. Graves" Date: Sat, 6 Sep 2025 18:43:31 -0500 Subject: [PATCH] [ui] Add auto-mount on first launch functionality #52 --- repertory/repertory/src/ui/mgmt_app_config.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/repertory/repertory/src/ui/mgmt_app_config.cpp b/repertory/repertory/src/ui/mgmt_app_config.cpp index b15553a5..fd39d1b2 100644 --- a/repertory/repertory/src/ui/mgmt_app_config.cpp +++ b/repertory/repertory/src/ui/mgmt_app_config.cpp @@ -247,7 +247,7 @@ void mgmt_app_config::set_auto_start(bool auto_start) { utils::shortcut_cfg cfg{}; cfg.arguments = {L"-ui", L"-lo"}; cfg.exe_path = utils::path::combine(L".", {L"repertory"}); - cfg.icon_path = utils::path::combine(".", {"icon.ico"}); + cfg.icon_path = utils::path::combine(L".", {L"icon.ico"}); cfg.location = utils::path::absolute(L"."); cfg.shortcut_name = L"repertory"; if (utils::create_shortcut(cfg, false)) {