From ac90d74a28cc81500dc7474ef35c38d52987c20e Mon Sep 17 00:00:00 2001 From: David Sansome Date: Sun, 17 Oct 2010 20:52:07 +0000 Subject: [PATCH] Don't show CD drives in the devices tab --- src/devices/giolister.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/devices/giolister.cpp b/src/devices/giolister.cpp index f7ea9d608..d03e5e2a6 100644 --- a/src/devices/giolister.cpp +++ b/src/devices/giolister.cpp @@ -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