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
1 changed files with 2 additions and 1 deletions

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>