placed the "default" option at last position

This commit is contained in:
Alex 2024-04-28 19:40:56 +07:00
parent 1c3dce4a1b
commit 66cf5ff6f8
No known key found for this signature in database
GPG Key ID: C9ABDE12115262C4
1 changed files with 1 additions and 1 deletions

View File

@ -165,8 +165,8 @@ public class Utility {
public static int getIconForFileType(FileType type) {
return switch (type) {
case MUSIC -> R.drawable.ic_headset;
default -> R.drawable.ic_movie;
case SUBTITLE -> R.drawable.ic_subtitles;
default -> R.drawable.ic_movie;
};
}