Порівняти коміти
23 Коміти
a9d51054b0
...
ef9ab30372
Автор | SHA1 | Дата | |
---|---|---|---|
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);
|
||||
QString ignorePatterns = ui->txtIgnorePatterns->text();
|
||||
this->indexer->setIgnorePattern(ignorePatterns.split(";"));
|
||||
QStringList patterns = ignorePatterns.split(";");
|
||||
patterns.removeAll(QString{});
|
||||
this->indexer->setIgnorePattern(patterns);
|
||||
|
||||
FileSaverOptions options;
|
||||
options.fillExistingContentless =
|
||||
|
@ -30,7 +30,7 @@ void Indexer::beginIndexing()
|
||||
pattern += "/";
|
||||
}
|
||||
pattern += "*";
|
||||
ignoreList.append(excludedPath);
|
||||
ignoreList.append(pattern);
|
||||
}
|
||||
ignoreList.append(this->ignorePattern);
|
||||
wildcardMatcher.setPatterns(ignoreList);
|
||||
|
Завантаження…
x
Посилання в новій задачі
Block a user