Sfoglia il codice sorgente

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 anno fa
parent
commit
65461a7d87

+ 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 {