From 029f3e4732e6bbe349455165d0eb9a0b3acdf3d6 Mon Sep 17 00:00:00 2001 From: Kai Uwe Broulik Date: Tue, 31 Mar 2015 12:30:36 +0200 Subject: [PATCH] Show kdeconnect devices under "Devices" We probably need a more sophisticated heuristic for identifying devices in the places panel but given we already did that for Bluetooth should do for the foreseeable future. REVIEW: 123189 BUG: 337222 --- src/panels/places/placesitem.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/panels/places/placesitem.cpp b/src/panels/places/placesitem.cpp index 45e0f6ef2..fad8c7fa5 100644 --- a/src/panels/places/placesitem.cpp +++ b/src/panels/places/placesitem.cpp @@ -179,7 +179,7 @@ PlacesItem::GroupType PlacesItem::groupType() const return SearchForType; } - if (protocol == QLatin1String("bluetooth") || protocol == QLatin1String("obexftp")) { + if (protocol == QLatin1String("bluetooth") || protocol == QLatin1String("obexftp") || protocol == QLatin1String("kdeconnect")) { return DevicesType; }