diff options
author | Petr Mrázek <peterix@gmail.com> | 2021-09-09 00:27:46 +0200 |
---|---|---|
committer | Petr Mrázek <peterix@gmail.com> | 2021-09-09 00:27:46 +0200 |
commit | e2355eb276bf355ca4acf526a0f3cc390aa88f8b (patch) | |
tree | d74463e53279605f5ed611dff6ecb7564b7f62e7 /launcher/minecraft/legacy | |
parent | 7185fd9a8f8a94be224433ce45069125aef66878 (diff) | |
download | PrismLauncher-e2355eb276bf355ca4acf526a0f3cc390aa88f8b.tar.gz PrismLauncher-e2355eb276bf355ca4acf526a0f3cc390aa88f8b.tar.bz2 PrismLauncher-e2355eb276bf355ca4acf526a0f3cc390aa88f8b.zip |
NOISSUE enable listing symlinks in mod/world lists
Diffstat (limited to 'launcher/minecraft/legacy')
-rw-r--r-- | launcher/minecraft/legacy/LegacyModList.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/launcher/minecraft/legacy/LegacyModList.cpp b/launcher/minecraft/legacy/LegacyModList.cpp index 7301eb8c..e9948ab1 100644 --- a/launcher/minecraft/legacy/LegacyModList.cpp +++ b/launcher/minecraft/legacy/LegacyModList.cpp @@ -22,7 +22,7 @@ LegacyModList::LegacyModList(const QString &dir, const QString &list_file) : m_dir(dir), m_list_file(list_file) { FS::ensureFolderPathExists(m_dir.absolutePath()); - m_dir.setFilter(QDir::Readable | QDir::NoDotAndDotDot | QDir::Files | QDir::Dirs | QDir::NoSymLinks); + m_dir.setFilter(QDir::Readable | QDir::NoDotAndDotDot | QDir::Files | QDir::Dirs); m_dir.setSorting(QDir::Name | QDir::IgnoreCase | QDir::LocaleAware); } |