Compare commits
23 Commits
a9d51054b0
...
ef9ab30372
Author | SHA1 | Date | |
---|---|---|---|
ef9ab30372 | |||
71f81bb682 | |||
544554ead2 | |||
1365772ba2 | |||
f5622ac480 | |||
4d3f10d118 | |||
d4868f05fc | |||
fc510b4376 | |||
d85c0bd2a5 | |||
cfc64705e3 | |||
6640504b49 | |||
1e06ec5d69 | |||
1f9c048838 | |||
667ed0cd8b | |||
ead4b58aed | |||
ff293b8505 | |||
fcc3732917 | |||
4728001e7e | |||
d36a435195 | |||
c5dff41df5 | |||
c6c0b09e56 | |||
9a2ef19308 | |||
e68706b8d6 |
@ -319,7 +319,9 @@ void MainWindow::startIndexing()
|
|||||||
}
|
}
|
||||||
this->indexer->setTargetPaths(paths);
|
this->indexer->setTargetPaths(paths);
|
||||||
QString ignorePatterns = ui->txtIgnorePatterns->text();
|
QString ignorePatterns = ui->txtIgnorePatterns->text();
|
||||||
this->indexer->setIgnorePattern(ignorePatterns.split(";"));
|
QStringList patterns = ignorePatterns.split(";");
|
||||||
|
patterns.removeAll(QString{});
|
||||||
|
this->indexer->setIgnorePattern(patterns);
|
||||||
|
|
||||||
FileSaverOptions options;
|
FileSaverOptions options;
|
||||||
options.fillExistingContentless =
|
options.fillExistingContentless =
|
||||||
|
@ -30,7 +30,7 @@ void Indexer::beginIndexing()
|
|||||||
pattern += "/";
|
pattern += "/";
|
||||||
}
|
}
|
||||||
pattern += "*";
|
pattern += "*";
|
||||||
ignoreList.append(excludedPath);
|
ignoreList.append(pattern);
|
||||||
}
|
}
|
||||||
ignoreList.append(this->ignorePattern);
|
ignoreList.append(this->ignorePattern);
|
||||||
wildcardMatcher.setPatterns(ignoreList);
|
wildcardMatcher.setPatterns(ignoreList);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user