consistent naming schema for folder icons

Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
This commit is contained in:
Andy Scherzinger 2020-05-12 15:13:07 +02:00
parent f770912328
commit d5c8e9911f
No known key found for this signature in database
GPG key ID: 6CADC7E3523C308B
10 changed files with 4 additions and 4 deletions

View file

Before

Width:  |  Height:  |  Size: 2.9 KiB

After

Width:  |  Height:  |  Size: 2.9 KiB

View file

Before

Width:  |  Height:  |  Size: 2.8 KiB

After

Width:  |  Height:  |  Size: 2.8 KiB

View file

Before

Width:  |  Height:  |  Size: 3.2 KiB

After

Width:  |  Height:  |  Size: 3.2 KiB

View file

Before

Width:  |  Height:  |  Size: 2.9 KiB

After

Width:  |  Height:  |  Size: 2.9 KiB

View file

Before

Width:  |  Height:  |  Size: 762 B

After

Width:  |  Height:  |  Size: 762 B

View file

@ -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;
}