placed the "default" option at last position
This commit is contained in:
parent
1c3dce4a1b
commit
66cf5ff6f8
|
@ -165,8 +165,8 @@ public class Utility {
|
||||||
public static int getIconForFileType(FileType type) {
|
public static int getIconForFileType(FileType type) {
|
||||||
return switch (type) {
|
return switch (type) {
|
||||||
case MUSIC -> R.drawable.ic_headset;
|
case MUSIC -> R.drawable.ic_headset;
|
||||||
default -> R.drawable.ic_movie;
|
|
||||||
case SUBTITLE -> R.drawable.ic_subtitles;
|
case SUBTITLE -> R.drawable.ic_subtitles;
|
||||||
|
default -> R.drawable.ic_movie;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue