diff --git a/panel-plugin/model_volumes.c b/panel-plugin/model_volumes.c index 15e7572..0a35f38 100644 --- a/panel-plugin/model_volumes.c +++ b/panel-plugin/model_volumes.c @@ -135,10 +135,13 @@ pbvol_mount_and_open(PlacesBookmarkAction *action) static inline gboolean pbvol_show_volume(ThunarVfsVolume *volume){ - DBG("Volume: %s [mounted=%x removable=%x present=%x]", thunar_vfs_volume_get_name(volume), - thunar_vfs_volume_is_mounted(volume), - thunar_vfs_volume_is_removable(volume), - thunar_vfs_volume_is_present(volume)); + DBG("Volume: %s [mounted=%x removable=%x present=%x disc=%x ejectable=%x]", + thunar_vfs_volume_get_name(volume), + thunar_vfs_volume_is_mounted(volume), + thunar_vfs_volume_is_removable(volume), + thunar_vfs_volume_is_present(volume), + thunar_vfs_volume_is_disc(volume), + thunar_vfs_volume_is_ejectable(volume)); return thunar_vfs_volume_is_removable(volume) && thunar_vfs_volume_is_present(volume);