From 74b9dd6d2f7fb7e5ad6b47bf4f36382648544389 Mon Sep 17 00:00:00 2001 From: MihailRis Date: Fri, 25 Oct 2024 14:26:59 +0300 Subject: [PATCH] update platform.cpp --- src/util/platform.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util/platform.cpp b/src/util/platform.cpp index b1c5362c..2a19a39b 100644 --- a/src/util/platform.cpp +++ b/src/util/platform.cpp @@ -57,7 +57,7 @@ void platform::open_folder(const std::filesystem::path& folder) { #ifdef __APPLE__ auto cmd = "open "+util::quote(folder.u8string()); #elif defined(_WIN32) - auto cmd = "start "+util::quote(folder.u8string()); + auto cmd = "explorer "+util::quote(folder.u8string()); #else auto cmd = "xdg-open "+util::quote(folder.u8string()); #endif