gui: Clear previews always on new search results

If a first search generates previews and the next one does
not, old entries would still have been visible.

So we just clear them once we get results.
This commit is contained in:
Albert S. 2022-08-06 10:10:42 +02:00
والد 9a70a821bd
کامیت eb58b8f770
1فایلهای تغییر یافته به همراه2 افزوده شده و 0 حذف شده

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

@ -588,6 +588,8 @@ void MainWindow::lineEditReturnPressed()
void MainWindow::handleSearchResults(const QVector<SearchResult> &results)
{
this->previewableSearchResults.clear();
qDeleteAll(ui->scrollAreaWidgetContents->children());
ui->treeResultsList->clear();
ui->comboPreviewFiles->clear();
ui->comboPreviewFiles->addItem("All previews");