GNOME Bugzilla – Bug 350176
sidebar's close icon should be smaller
Last modified: 2006-08-11 12:49:59 UTC
Hello, I don't know if there is a "standard" on the size of the sidebar close button, but the size of the icon totem uses is a bit big, specially because nautilus and gedit use a smallest version.
Created attachment 70329 [details] just a screenshot with the difference of size
We use the GTK_ICON_SIZE_SMALL_TOOLBAR size: image = gtk_image_new_from_stock (GTK_STOCK_CLOSE, GTK_ICON_SIZE_SMALL_TOOLBAR); gedit uses GTK_ICON_SIZE_MENU size. IMO Small toolbar is the right size to use, which gedit should use, and your theme should be fixed to use decent sizes for those (they probably made _SMALL_TOOLBAR the same size as _LARGE_TOOLBAR). evince also uses GTK_ICON_SIZE_SMALL_TOOLBAR. Nautilus also uses GTK_ICON_SIZE_MENU. So you need to: - file a bug against your icon theme - get either gedit and nautilus to switch sizes, or evince and totem (don't really care about changing Totem, just point me to the evince bug number). bug 307044 is about providing a sidebar widget in gtk+.
I like SIZE_SMALL_TOOLBAR in evince too. GEdit will have problems with it since they use same icon in tab labels, so I wonder if it's possible to change this in gedit. And we have to be consistent with file selector (See bug 165770).
Anyhow, I've changed sidebar icon size in evince.
2006-08-11 Bastien Nocera <hadess@hadess.net> * src/ev-sidebar.c: (ev_sidebar_init): Use a GTK_ICON_SIZE_MENU close button (Closes: #350176)