GNOME Bugzilla – Bug 737300
Make message list header smaller
Last modified: 2015-02-27 08:33:24 UTC
Created attachment 287021 [details] screenshot As you can see in the attached screenshot, Evolution's column headers look like an odd série of buttons with GTK 3.14. Evolution is the only affected application. I was under the impression that these widgets were converted to a standard treeview header widget at some point in time?
I confirm, I get exactly this same problem with gnome 3.14 on Gentoo
(evolution-3.12.10)
I guess you mean it's too high, right? There is like 6 pixels padding currently, which looks like too much to me too, thus I'll make it only 2 pixel (plus the padding derived from regular buttons), one on each side. The header doesn't look that giant with this change. Gtk 3.15.9 also centers the text vertically (3.14.6 does not here), thus the header looks more natural there. Created commit d0cc1a9 in evo master (3.15.91+)
No, what I mean is that the styling is completely different... compare with the two windows in the background in that screenshot, for which the headers are more like: _________________________ Foo | Bar | Baz And Evolution's are like: ______ _______ ________ ( Foo )( Bar )( Baz ) ------ ------- --------
Hmm, I see. There is a GTK_STYLE_CLASS_HEADER, but that is not used in the GtkTreeView header, and it looks quite differently too, thus let's mimic what the GtkButton does. Created commit e475982 in evo master (3.15.91+)