From 862168418b50b4bbe221e521eea1e7ec6bf67d94 Mon Sep 17 00:00:00 2001 From: Albert S Date: Sun, 5 Jun 2022 11:14:10 +0200 Subject: [PATCH] gui: mainwindow: Reword warning for inaccessible files --- gui/mainwindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gui/mainwindow.cpp b/gui/mainwindow.cpp index d432df7..b70fafa 100644 --- a/gui/mainwindow.cpp +++ b/gui/mainwindow.cpp @@ -472,7 +472,7 @@ void MainWindow::handleSearchResults(const QVector &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); }