mirror of
https://github.com/cemu-project/Cemu.git
synced 2025-07-11 01:08:30 +12:00
macOS: Fix browsing of directory paths with spaces (#1546)
This commit is contained in:
parent
00099c5ecc
commit
fa7ae84314
3 changed files with 6 additions and 6 deletions
|
@ -491,7 +491,7 @@ void TitleManager::OnSaveOpenDirectory(wxCommandEvent& event)
|
|||
if (!fs::exists(target) || !fs::is_directory(target))
|
||||
return;
|
||||
|
||||
wxLaunchDefaultBrowser(wxHelper::FromUtf8(fmt::format("file:{}", _pathToUtf8(target))));
|
||||
wxLaunchDefaultApplication(wxHelper::FromPath(target));
|
||||
}
|
||||
|
||||
void TitleManager::OnSaveDelete(wxCommandEvent& event)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue