1
0
Fork 0
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:
Arne Schwabe 2018-06-18 15:39:34 +02:00 committed by Andre Bernet
parent 23f53077cf
commit e3ea859592

View file

@ -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)