mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-23 13:35:58 +03:00
Ignore ui: Add the sync journal patterns #5844
The ignore patterns for the journal files are hardcoded. Add them to the UI to make them discoverable.
This commit is contained in:
parent
4291ea47f7
commit
1e78a14f1a
1 changed files with 3 additions and 0 deletions
|
@ -48,6 +48,9 @@ IgnoreListEditor::IgnoreListEditor(QWidget *parent) :
|
|||
"and cannot be modified in this view.")
|
||||
.arg(QDir::toNativeSeparators(cfgFile.excludeFile(ConfigFile::SystemScope)));
|
||||
|
||||
addPattern(".csync_journal.db*", /*deletable=*/false, /*readonly=*/true);
|
||||
addPattern("._sync_*.db*", /*deletable=*/false, /*readonly=*/true);
|
||||
addPattern(".sync_*.db*", /*deletable=*/false, /*readonly=*/true);
|
||||
readIgnoreFile(cfgFile.excludeFile(ConfigFile::SystemScope), true);
|
||||
readIgnoreFile(cfgFile.excludeFile(ConfigFile::UserScope), false);
|
||||
|
||||
|
|
Loading…
Reference in a new issue