1
0
mirror of https://github.com/clementine-player/Clementine synced 2024-12-14 02:14:21 +01:00

Don't show CD drives in the devices tab

This commit is contained in:
David Sansome 2010-10-17 20:52:07 +00:00
parent 0a42a9efb5
commit ac90d74a28

View File

@ -43,7 +43,8 @@ bool GioLister::DeviceInfo::is_suitable() const {
return filesystem_type != "udf" &&
filesystem_type != "smb" &&
filesystem_type != "cifs" &&
filesystem_type != "ssh";
filesystem_type != "ssh" &&
filesystem_type != "isofs";
}
template <typename T, typename F>