From: Grigorii Horos Date: Fri, 4 Dec 2015 13:40:15 +0000 (+0200) Subject: Dolphin integration: use system icons for labels in KDE X-Git-Tag: archive/raspbian/3.16.7-1_deb13u1+rpi1~1^2~1254^2~120 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=69d9840b89f4a7527eefbcf095f50b5ef81b8244;p=nextcloud-desktop.git Dolphin integration: use system icons for labels in KDE Cherry-picked from https://github.com/owncloud/client/pull/4252 --- diff --git a/shell_integration/dolphin/ownclouddolphinoverlayplugin.cpp b/shell_integration/dolphin/ownclouddolphinoverlayplugin.cpp index 5ea31dce2..4d3230c81 100644 --- a/shell_integration/dolphin/ownclouddolphinoverlayplugin.cpp +++ b/shell_integration/dolphin/ownclouddolphinoverlayplugin.cpp @@ -64,13 +64,13 @@ private: return r; if (status.startsWith("OK")) - r << "ownCloud_ok"; + r << "vcs-normal"; if (status.startsWith("SYNC") || status.startsWith("NEW")) - r << "ownCloud_sync"; + r << "vcs-update-required"; if (status.startsWith("IGNORE") || status.startsWith("WARN")) - r << "ownCloud_warn"; + r << "vcs-locally-modified-unstaged"; if (status.startsWith("ERROR")) - r << "ownCloud_error"; + r << "vcs-conflicting"; if (status.contains("+SWM")) r << "document-share";