Skip to content

Commit

Permalink
Merge pull request #2053 from Trial97/fix_open_path_take_two
Browse files Browse the repository at this point in the history
  • Loading branch information
Scrumplex committed Jan 23, 2024
2 parents 913f6d8 + 12bf913 commit e60235c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion launcher/DesktopServices.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ bool openPath(const QFileInfo& path, bool ensureFolderPathExists)
if (ensureFolderPathExists) {
FS::ensureFolderPathExists(path);
}
return openUrl(QUrl::fromLocalFile(QFileInfo(path).absolutePath()));
return openUrl(QUrl::fromLocalFile(QFileInfo(path).absoluteFilePath()));
}

bool openPath(const QString& path, bool ensureFolderPathExists)
Expand Down

0 comments on commit e60235c

Please sign in to comment.