fix: shell.openPath should be non-blocking (#48079)

fix: shell.openPath should be non-blocking
This commit is contained in:
Shelley Vohr
2025-08-15 22:55:31 +02:00
committed by GitHub
parent 7792ed1efa
commit 0e6c26096f

View File

@@ -342,7 +342,7 @@ void ShowItemInFolder(const base::FilePath& full_path) {
void OpenPath(const base::FilePath& full_path, OpenCallback callback) {
// This is async, so we don't care about the return value.
XDGOpen(full_path.DirName(), full_path.value(), true, std::move(callback));
XDGOpen(full_path.DirName(), full_path.value(), false, std::move(callback));
}
void OpenFolder(const base::FilePath& full_path) {