Fix Open Config Folder

This commit is contained in:
GriffinR 2022-10-25 08:07:14 -04:00
parent 8137388364
commit 3656c3082f
2 changed files with 2 additions and 1 deletions

View file

@ -66,6 +66,7 @@ The **"Breaking Changes"** listed below are changes that have been made in the d
- Fix incorrect limits on Floor Number and Border Width/Height in the New Map Options window.
- Fix Border Width/Height being set to 0 when creating a new map from an existing layout.
- Fix certain UI elements not highlighting red on some platforms.
- Fix Open Config Folder not responding
## [4.5.0] - 2021-12-26
### Added

View file

@ -2710,7 +2710,7 @@ void MainWindow::on_actionOpen_Log_File_triggered() {
}
void MainWindow::on_actionOpen_Config_Folder_triggered() {
QDesktopServices::openUrl(QStandardPaths::writableLocation(QStandardPaths::AppDataLocation));
QDesktopServices::openUrl(QUrl::fromLocalFile(QStandardPaths::writableLocation(QStandardPaths::AppDataLocation)));
}
void MainWindow::on_actionEdit_Preferences_triggered() {