From: Ismael Asensio Date: Mon, 7 Oct 2019 19:44:34 +0000 (+0200) Subject: [dolphin/search] Add missing parsing for type 'Folder' X-Git-Url: https://cloud.milkyroute.net/gitweb/dolphin.git/commitdiff_plain/304ab14e0883b0c601dc3c7f7c26387245db66e0?ds=inline [dolphin/search] Add missing parsing for type 'Folder' Summary: Add missing parsing for type 'Folder' See D24422 Test Plan: dolphin --new-window 'baloosearch:?json=%7B%22type%22:[%22Folder%22]%7D' - `Folders` is selected in search options Reviewers: #dolphin, elvisangelaccio, meven, ngraham Reviewed By: #dolphin, ngraham Subscribers: kfm-devel Tags: #dolphin Differential Revision: https://phabricator.kde.org/D24448 --- diff --git a/src/search/dolphinfacetswidget.cpp b/src/search/dolphinfacetswidget.cpp index e4388f2e7..35f0c67c1 100644 --- a/src/search/dolphinfacetswidget.cpp +++ b/src/search/dolphinfacetswidget.cpp @@ -211,7 +211,9 @@ void DolphinFacetsWidget::setRatingTerm(const QString& term) void DolphinFacetsWidget::setFacetType(const QString& type) { - if (type == QLatin1String("Document")) { + if (type == QLatin1String("Folder")) { + m_folders->setChecked(true); + } else if (type == QLatin1String("Document")) { m_documents->setChecked(true); } else if (type == QLatin1String("Image")) { m_images->setChecked(true);