Resolve shortcuts for Open Project

This commit is contained in:
GriffinR 2023-01-06 12:42:29 -05:00
parent 00a430d208
commit 160a9c0713
2 changed files with 2 additions and 1 deletions

View file

@ -18,6 +18,7 @@ The **"Breaking Changes"** listed below are changes that have been made in the d
- Fix New Map settings being preserved when switching projects.
- Fix scripting API callback `onMapResized` not triggering.
- Fix crash when importing AdvanceMap metatiles while `enable_triple_layer_metatiles` is enabled.
- Fix `File -> Open Project` not resolving folder shortcuts.
## [5.0.0] - 2022-10-30
### Breaking Changes

View file

@ -608,7 +608,7 @@ QString MainWindow::getDefaultMap() {
}
QString MainWindow::getExistingDirectory(QString dir) {
return QFileDialog::getExistingDirectory(this, "Open Directory", dir, QFileDialog::ShowDirsOnly | QFileDialog::DontResolveSymlinks);
return QFileDialog::getExistingDirectory(this, "Open Directory", dir, QFileDialog::ShowDirsOnly);
}
void MainWindow::on_action_Open_Project_triggered()