diff options
author | Rachel Powers <508861+Ryex@users.noreply.github.com> | 2023-06-23 21:40:55 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-23 21:40:55 -0700 |
commit | 4322222acc354d2eb41492c0acabbe80999f7b1f (patch) | |
tree | 8f314998c22d6bdb839724a0cc99668456585598 | |
parent | cce6a547019397be8919c355f694d377f2e63287 (diff) | |
parent | 763b3c323613473a1d9678e15f92a712884ab7c3 (diff) | |
download | PrismLauncher-4322222acc354d2eb41492c0acabbe80999f7b1f.tar.gz PrismLauncher-4322222acc354d2eb41492c0acabbe80999f7b1f.tar.bz2 PrismLauncher-4322222acc354d2eb41492c0acabbe80999f7b1f.zip |
Merge pull request #1255 from Trial97/export4
Added Thumbs.db to excluded files in MrPackExport
-rw-r--r-- | launcher/ui/dialogs/ExportMrPackDialog.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/launcher/ui/dialogs/ExportMrPackDialog.cpp b/launcher/ui/dialogs/ExportMrPackDialog.cpp index 561b92e4..60ecefd5 100644 --- a/launcher/ui/dialogs/ExportMrPackDialog.cpp +++ b/launcher/ui/dialogs/ExportMrPackDialog.cpp @@ -53,7 +53,7 @@ ExportMrPackDialog::ExportMrPackDialog(InstancePtr instance, QWidget* parent) const QDir root(instance->gameRoot()); proxy = new FileIgnoreProxy(instance->gameRoot(), this); proxy->setSourceModel(model); - proxy->setFilterRegularExpression("^(?!\\.DS_Store).+$"); + proxy->setFilterRegularExpression("^(?!(\\.DS_Store)|([tT]humbs\\.db)).+$"); const QDir::Filters filter(QDir::AllEntries | QDir::NoDotAndDotDot | QDir::AllDirs | QDir::Hidden); |