mirror of
https://github.com/opentx/opentx.git
synced 2025-07-26 17:55:19 +03:00
Ignore hidden folder on sync (#5976)
This commit is contained in:
parent
23f53077cf
commit
e3ea859592
1 changed files with 1 additions and 1 deletions
|
@ -60,7 +60,7 @@ SyncProcess::SyncProcess(const QString & folderA, const QString & folderB, const
|
|||
if (ctype == OVERWR_ALWAYS && direction == SYNC_A2B_B2A)
|
||||
ctype = OVERWR_IF_DIFF;
|
||||
|
||||
dirFilters = QDir::Filters(QDir::AllDirs | QDir::Files | QDir::NoDotAndDotDot);
|
||||
dirFilters = QDir::Filters(QDir::Dirs | QDir::Files | QDir::NoDotAndDotDot);
|
||||
|
||||
reportTemplate = tr("New: <b>%1</b>; Updated: <b>%2</b>; Skipped: <b>%3</b>; Errors: <font color=%5><b>%4</b></font>;");
|
||||
if (dryRun)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue