mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-16 21:50:34 +00:00
gtkplacessidebar: Show drives with removable media
Some drives have removable media that is not ejectable (e.g. a laptop's SD card reader). Show volumes on these drives in the sidebar. https://bugzilla.gnome.org/show_bug.cgi?id=755654
This commit is contained in:
parent
6f6f13a7d8
commit
f2b848a531
@ -840,7 +840,10 @@ is_removable_volume (GVolume *volume)
|
||||
is_removable |= !id;
|
||||
|
||||
if (drive)
|
||||
is_removable |= g_drive_can_eject (drive);
|
||||
{
|
||||
is_removable |= g_drive_can_eject (drive);
|
||||
is_removable |= g_drive_is_media_removable (drive);
|
||||
}
|
||||
|
||||
if (mount)
|
||||
is_removable |= (g_mount_can_eject (mount) && !g_mount_can_unmount (mount));
|
||||
|
Loading…
Reference in New Issue
Block a user