fix windows dir opening
All checks were successful
eden-license / license-header (pull_request) Successful in 33s

Signed-off-by: crueter <crueter@eden-emu.dev>
This commit is contained in:
crueter 2025-09-13 13:31:32 -04:00
parent a572ee58d3
commit 6d7820cf01
Signed by: crueter
GPG key ID: 425ACD2D4830EBC6

View file

@ -165,7 +165,7 @@ bool MakeShortcutIcoPath(const u64 program_id,
void OpenEdenFolder(const Common::FS::EdenPath& path)
{
QDesktopServices::openUrl(QUrl(QString::fromStdString(Common::FS::GetEdenPathString(path))));
QDesktopServices::openUrl(QUrl::fromLocalFile(QString::fromStdString(Common::FS::GetEdenPathString(path))));
}
void OpenRootDataFolder()