GNOME Bugzilla – Bug 399705
use standard icon sizes in the UI
Last modified: 2007-07-15 21:05:22 UTC
F-Spot currently uses non standard size of 20x20 pixels for the editing toolbar. This poses potential problems when using the icons alongside the standard toolbar icons (22x22px) making either of those fuzzy due to scaling and filtering.
I'm using IconSize.Button should I be using IconSize.SmallToolbar?
If that's either 16x16, 22x22 or 24x24, please do. I'll fix up the icons soon afterwards.
IconSize.Menu resolves to 16px SmallToolbar => 18px Button => 20px LargeToolbar => 24px
I suggest going to LargeToolbar or Menu then. Generally, we aught to do some thresholding in gtk. Scaling a 22x22px bitmap into 20x20 is a sin! We only have 16x16, 22x22, 32x32 bitmaps in our icon themes. We render the 24x24px out of the 22x22px as GNOME is using 24x24, but this really should be done in gtk: 16x16 .. 21x21 > 16x16px bitmap (add padding, no scaling) 22x22 .. 31x31 > 22x22px bitmap (no scaling) 32x32 .. 47x47 > 32x32px bitmap (no scaling) 48x48 .. > SVG (scalable)
jimmac, is that problem addressed now with the themable branch merged in ?
Yes, indeed. This is now fixed. Thanks