┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKai Uwe Broulik <[email protected]>2022-11-29 20:31:26 +0100
committerKai Uwe Broulik <[email protected]>2022-11-30 13:28:53 +0000
commitfcdb202577f3368e85a685bfc4b851e7ddc797c8 (patch)
treef5d2156f2601a6f1669ba84b9db6d3e6055bc210
parent628a2bbb64d08e5aff524b264847699a1f55a611 (diff)
DolphinView: Add placeholder label for AFC kio
Similar to how it's special-cased for MTP
-rw-r--r--src/views/dolphinview.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/views/dolphinview.cpp b/src/views/dolphinview.cpp
index 5f331dc27..c84e642dc 100644
--- a/src/views/dolphinview.cpp
+++ b/src/views/dolphinview.cpp
@@ -2264,6 +2264,8 @@ void DolphinView::updatePlaceholderLabel()
m_placeholderLabel->setText(i18n("No relevant network resources found"));
} else if (m_url.scheme() == QLatin1String("mtp") && m_url.path() == QLatin1String("/")) {
m_placeholderLabel->setText(i18n("No MTP-compatible devices found"));
+ } else if (m_url.scheme() == QLatin1String("afc") && m_url.path() == QLatin1String("/")) {
+ m_placeholderLabel->setText(i18n("No Apple devices found"));
} else if (m_url.scheme() == QLatin1String("bluetooth")) {
m_placeholderLabel->setText(i18n("No Bluetooth devices found"));
} else {