1
0

gui: MainWindow: Also highlight unicode numbers in previews

Dieser Commit ist enthalten in:
Albert S. 2022-06-14 10:16:07 +02:00
Ursprung bc908a1038
Commit b71c234fb4

Datei anzeigen

@ -544,7 +544,7 @@ void MainWindow::makePreviews(int page)
scaleText.chop(1); scaleText.chop(1);
QVector<QString> wordsToHighlight; QVector<QString> wordsToHighlight;
QRegularExpression extractor(R"#("([^"]*)"|(\p{L}+))#"); QRegularExpression extractor(R"#("([^"]*)"|((\p{L}|\p{N})+))#");
for(const Token &token : this->contentSearchQuery.getTokens()) for(const Token &token : this->contentSearchQuery.getTokens())
{ {
if(token.type == FILTER_CONTENT_CONTAINS) if(token.type == FILTER_CONTENT_CONTAINS)