gui: MainWindow: Also highlight unicode numbers in previews

这个提交包含在:
Albert S. 2022-06-14 10:16:07 +02:00
父节点 bc908a1038
当前提交 b71c234fb4
共有 1 个文件被更改,包括 1 次插入1 次删除

查看文件

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