diff options
author | TheKodeToad <TheKodeToad@proton.me> | 2023-08-02 20:27:37 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-02 20:27:37 +0100 |
commit | afaf6f894c797fc0aa7eb329b661b533be469005 (patch) | |
tree | 0be358a0b616010aa5a022dbd3336a15cb791638 /launcher/ui/dialogs/ExportPackDialog.cpp | |
parent | 8b3c465a50e6be2a09c3968f1fd1e91b0428cbb0 (diff) | |
parent | ac36a2289faf331af17b51e2c9ebb78d005f9bfa (diff) | |
download | PrismLauncher-afaf6f894c797fc0aa7eb329b661b533be469005.tar.gz PrismLauncher-afaf6f894c797fc0aa7eb329b661b533be469005.tar.bz2 PrismLauncher-afaf6f894c797fc0aa7eb329b661b533be469005.zip |
Merge branch 'PrismLauncher:develop' into better-component-installation
Diffstat (limited to 'launcher/ui/dialogs/ExportPackDialog.cpp')
-rw-r--r-- | launcher/ui/dialogs/ExportPackDialog.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/launcher/ui/dialogs/ExportPackDialog.cpp b/launcher/ui/dialogs/ExportPackDialog.cpp index 2abe2805..ad8db5ff 100644 --- a/launcher/ui/dialogs/ExportPackDialog.cpp +++ b/launcher/ui/dialogs/ExportPackDialog.cpp @@ -61,7 +61,7 @@ ExportPackDialog::ExportPackDialog(InstancePtr instance, QWidget* parent, ModPla // use the game root - everything outside cannot be exported const QDir root(instance->gameRoot()); proxy = new FileIgnoreProxy(instance->gameRoot(), this); - proxy->ignoreFilesWithPath().insert({ "logs", "crash-reports" }); + proxy->ignoreFilesWithPath().insert({ "logs", "crash-reports", ".cache", ".fabric", ".quilt" }); proxy->ignoreFilesWithName().append({ ".DS_Store", "thumbs.db", "Thumbs.db" }); proxy->setSourceModel(model); |