[PATCH] window icons do not use appropriate icons
- From: Jaap Haitsma <jaap haitsma org>
- To: "nautilus-list gnome org" <nautilus-list gnome org>
- Subject: [PATCH] window icons do not use appropriate icons
- Date: Thu, 10 Feb 2005 22:43:11 +0100
A while ago a patch was applied such that the window icon becomes the
trash icon when you open the trash folder and when you are in the
computer folder it uses the computer icon etc. Furthermore icons for
this were added in the places menu.
However the window icons use the 48 pixel icons (so they are blurry)
while the places icons use the 16 pixel icons
Attached patch let's the window icons use the 16 pixel version
Jaap
Index: nautilus-window.c
===================================================================
RCS file: /cvs/gnome/nautilus/src/nautilus-window.c,v
retrieving revision 1.440
diff -u -r1.440 nautilus-window.c
--- nautilus-window.c 1 Feb 2005 16:44:47 -0000 1.440
+++ nautilus-window.c 10 Feb 2005 21:36:28 -0000
@@ -1081,14 +1081,14 @@
if (NAUTILUS_IS_DESKTOP_WINDOW (window)) {
icon_theme = nautilus_icon_factory_get_icon_theme ();
pixbuf = gtk_icon_theme_load_icon (icon_theme,
- "gnome-fs-desktop", 48,
+ "gnome-fs-desktop", 16,
0, NULL);
g_object_unref(icon_theme);
} else {
pixbuf = nautilus_icon_factory_get_pixbuf_for_file (window->details->viewed_file,
"open",
- NAUTILUS_ICON_SIZE_STANDARD);
+ 16);
}
if (pixbuf != NULL) {
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]