浏览代码

Use folder key icon for encrypted state

Signed-off-by: Alper Ozturk <alperozturk@lions-macbook.local>
Signed-off-by: alperozturk <alper_ozturk@proton.me>
Alper Ozturk 1 年之前
父节点
当前提交
65461a7d87
共有 1 个文件被更改,包括 1 次插入2 次删除
  1. 1 2
      app/src/main/java/com/owncloud/android/datamodel/OCFile.java

+ 1 - 2
app/src/main/java/com/owncloud/android/datamodel/OCFile.java

@@ -659,8 +659,7 @@ public class OCFile implements Parcelable, Comparable<OCFile>, ServerFileInterfa
         } else if (WebdavEntry.MountType.EXTERNAL == mountType) {
             drawableId = R.drawable.folder_external;
         } else if (locked) {
-            // TODO replace with actual icon
-            drawableId = R.drawable.file_location;
+            drawableId = R.drawable.folder_locked;
         } else if (isAutoUploadFolder) {
             drawableId = R.drawable.folder_auto_upload;
         } else {