From: Nate Graham Date: Sat, 17 Jul 2021 03:08:18 +0000 (-0400) Subject: Merge branch 'release/21.08' X-Git-Url: https://cloud.milkyroute.net/gitweb/dolphin.git/commitdiff_plain/2c7a1f4b4c5a7cfd8cd4ddafbe7ca46f9b968830?hp=6f632283d022aaf9d8e2bda81a5409aa36242d4d Merge branch 'release/21.08' --- diff --git a/src/views/dolphinview.cpp b/src/views/dolphinview.cpp index 9d253c4e0..f5c21a2c5 100644 --- a/src/views/dolphinview.cpp +++ b/src/views/dolphinview.cpp @@ -2094,7 +2094,7 @@ void DolphinView::updatePlaceholderLabel() m_placeholderLabel->setText(i18n("No items matching the filter")); } else if (m_url.scheme() == QLatin1String("baloosearch") || m_url.scheme() == QLatin1String("filenamesearch")) { m_placeholderLabel->setText(i18n("No items matching the search")); - } else if (m_url.scheme() == QLatin1String("trash")) { + } else if (m_url.scheme() == QLatin1String("trash") && m_url.path() == QLatin1String("/")) { m_placeholderLabel->setText(i18n("Trash is empty")); } else if (m_url.scheme() == QLatin1String("tags")) { m_placeholderLabel->setText(i18n("No tags"));