gui: mainwindow: Reword warning for inaccessible files

This commit is contained in:
Albert S. 2022-06-05 11:14:10 +02:00
父節點 a6ddcef0c0
當前提交 862168418b
共有 1 個檔案被更改,包括 1 行新增1 行删除

查看文件

@ -472,7 +472,7 @@ void MainWindow::handleSearchResults(const QVector<SearchResult> &results)
QString statusText = "Results: " + QString::number(results.size()) + " files";
if(hasDeleted)
{
statusText += " WARNING: Some files don't exist anymore. No preview available for those. Index out of sync";
statusText += " WARNING: Some files are inaccessible. No preview available for those. Index may be out of sync";
}
ui->lblSearchResults->setText(statusText);
}