diff --git a/CHANGELOG.md b/CHANGELOG.md index 4b3ce800..7992a51b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp index 08eb3a3f..cdbb0734 100644 --- a/src/mainwindow.cpp +++ b/src/mainwindow.cpp @@ -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() {