gui: mainwindow: Use Unicode category class to extract highlight words

This commit is contained in:
Albert S. 2022-06-05 23:37:23 +02:00
والد 61fa7ca16d
کامیت f8d6a1a586
1فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده

مشاهده پرونده

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