summaryrefslogtreecommitdiff
path: root/components/hardware
diff options
context:
space:
mode:
authorAndy Hertzfeld <andy@src.gnome.org>2000-11-03 00:20:49 +0000
committerAndy Hertzfeld <andy@src.gnome.org>2000-11-03 00:20:49 +0000
commit58bf532a3f5369b8651f2c076d9dd6d8253545b9 (patch)
tree4c6e36e0d29f8336a5dd67885675b350a2544e3e /components/hardware
parentbe2548fdd55fa31f96c7e0a600dc42b80315b673 (diff)
downloadnautilus-58bf532a3f5369b8651f2c076d9dd6d8253545b9.tar.gz
fixed problem where I accidentally changed the icons for disk drives that
fixed problem where I accidentally changed the icons for disk drives that appear on the desktop when I only meant to change the hardware view. Fixed by restoring the old icon, and using one with a different name in the hardware view. * components/hardware/nautilus-hardware-view.c: (setup_overview_form): use "i-harddrive.png" instead of "i-blockdev.png" * icons/Makefile.am: * icons/i-blockdev.png: * icons/i-harddrive.png: restored the old block device icon and added a new hard drive one.
Diffstat (limited to 'components/hardware')
-rw-r--r--components/hardware/nautilus-hardware-view.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/components/hardware/nautilus-hardware-view.c b/components/hardware/nautilus-hardware-view.c
index e7b477b9b..651a564a7 100644
--- a/components/hardware/nautilus-hardware-view.c
+++ b/components/hardware/nautilus-hardware-view.c
@@ -459,12 +459,12 @@ static void setup_overview_form (NautilusHardwareView *view)
/* Set the icon depending on the type of device */
if(!strcmp(ide_media, "disk\n")) {
- file_name = nautilus_pixmap_file("i-blockdev.png");
+ file_name = nautilus_pixmap_file("i-harddisk.png");
} else if(!strcmp(ide_media, "cdrom\n")) {
file_name = nautilus_pixmap_file("CD_drive.png");
} else {
/* some other device ... still set an icon */
- file_name = nautilus_pixmap_file("i-blockdev.png");
+ file_name = nautilus_pixmap_file("i-harddisk.png");
}
pixmap_widget = GTK_WIDGET (gnome_pixmap_new_from_file(file_name));