consistent naming schema for folder icons
Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
Before Width: | Height: | Size: 2.9 KiB After Width: | Height: | Size: 2.9 KiB |
Before Width: | Height: | Size: 2.8 KiB After Width: | Height: | Size: 2.8 KiB |
Before Width: | Height: | Size: 3.2 KiB After Width: | Height: | Size: 3.2 KiB |
Before Width: | Height: | Size: 2.9 KiB After Width: | Height: | Size: 2.9 KiB |
Before Width: | Height: | Size: 762 B After Width: | Height: | Size: 762 B |
|
@ -164,15 +164,15 @@ public final class MimeTypeUtil {
|
|||
int drawableId;
|
||||
|
||||
if (isSharedViaLink) {
|
||||
drawableId = R.drawable.folder_public;
|
||||
drawableId = R.drawable.folder_shared_link;
|
||||
} else if (isSharedViaUsers) {
|
||||
drawableId = R.drawable.shared_with_me_folder;
|
||||
drawableId = R.drawable.folder_shared_users;
|
||||
} else if (isEncrypted) {
|
||||
drawableId = R.drawable.ic_list_encrypted_folder;
|
||||
drawableId = R.drawable.folder_encrypted;
|
||||
} else if (WebdavEntry.MountType.EXTERNAL == mountType) {
|
||||
drawableId = R.drawable.folder_external;
|
||||
} else if (WebdavEntry.MountType.GROUP == mountType) {
|
||||
drawableId = R.drawable.ic_folder_group;
|
||||
drawableId = R.drawable.folder_group;
|
||||
} else {
|
||||
drawableId = R.drawable.folder;
|
||||
}
|
||||
|
|