GNOME Bugzilla – Bug 514139
audio CD icon not displayed
Last modified: 2008-02-25 16:54:49 UTC
The bug has been described on https://bugs.launchpad.net/bugs/186161 "Currently I get no icons for audio CDs on the desktop. This is the same with a new user."
that's because of this change, http://svn.gnome.org/viewvc/gvfs/trunk/hal/ghalvolumemonitor.c?r1=1148&r2=1176, the code ignores the drives when there is a volume without filesystem corresponding or update_discs does a find_drive_by_udi (monitor, drive_udi) call and look for a corresponding drive
This also affects blanks discs... I'm working on a fix.
OK, the fix looks something like this - if (!should_volume_be_ignored (pool, volume_dev)) + if (!should_volume_be_ignored (pool, volume_dev) || + hal_device_get_property_bool (volume_dev, "volume.disc.has_audio" ) || + hal_device_get_property_bool (volume_dev, "volume.disc.is_blank")) Will include this in my next patch to Alex. Alex, what was the rationale for should_drive_be_ignored() in the first place?
alexl committed a patch with this fix