placed the "default" option at last position

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

View File

@ -179,8 +179,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;
};
}