From 69d9840b89f4a7527eefbcf095f50b5ef81b8244 Mon Sep 17 00:00:00 2001 From: Grigorii Horos Date: Fri, 4 Dec 2015 15:40:15 +0200 Subject: [PATCH] Dolphin integration: use system icons for labels in KDE Cherry-picked from https://github.com/owncloud/client/pull/4252 --- .../dolphin/ownclouddolphinoverlayplugin.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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"; -- 2.30.2