소스 검색

Dolphin shell integration: use the owncloud icons

Olivier Goffart 10 년 전
부모
커밋
6ea05ff6e3
1개의 변경된 파일6개의 추가작업 그리고 2개의 파일을 삭제
  1. 6 2
      shell_integration/dolphin/ownclouddolphinoverlayplugin.cpp

+ 6 - 2
shell_integration/dolphin/ownclouddolphinoverlayplugin.cpp

@@ -64,9 +64,13 @@ private:
             return r;
 
         if (status.startsWith("OK"))
-            r << "dialog-ok";
+            r << "ownCloud_ok";
         if (status.startsWith("SYNC") || status.startsWith("NEW"))
-            r << "view-refresh";
+            r << "owncloud_sync";
+        if (status.startsWith("IGNORE") || status.startsWith("WARN"))
+            r << "owncloud_warn";
+        if (status.startsWith("ERROR"))
+            r << "owncloud_error";
 
         if (status.contains("+SWM"))
             r << "document-share";