1
0
mirror of synced 2025-03-01 07:30:43 +01:00

fix: Open file in containing folder not working

This commit is contained in:
WerWolv 2024-06-27 19:25:02 +02:00
parent d9cecbbb5f
commit e43016735d

View File

@ -193,6 +193,7 @@ namespace hex::plugin::builtin {
void FileProvider::setPath(const std::fs::path &path) { void FileProvider::setPath(const std::fs::path &path) {
m_path = path; m_path = path;
m_path.make_preferred();
} }
bool FileProvider::open() { bool FileProvider::open() {