diff options
author | Behdad Esfahbod <behdad@gnome.org> | 2007-06-17 07:45:25 +0000 |
---|---|---|
committer | Behdad Esfahbod <behdad@src.gnome.org> | 2007-06-17 07:45:25 +0000 |
commit | 109c6d6d18fe4dba243580397a693b5aff885749 (patch) | |
tree | 04a38e6bf85d7660f069a5c485e756559cabf4d3 | |
parent | f1b24665bbb744d6becead587878f60fd40949cc (diff) | |
download | gtk+-109c6d6d18fe4dba243580397a693b5aff885749.tar.gz |
List font sizes 6 and 7pt too. (#440450, Sebastien Bacher, Alex "weej"
2007-06-17 Behdad Esfahbod <behdad@gnome.org>
* gtk/gtkfontsel.c: List font sizes 6 and 7pt too. (#440450,
Sebastien Bacher, Alex "weej" Jones)
svn path=/trunk/; revision=18168
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | gtk/gtkfontsel.c | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -1,3 +1,8 @@ +2007-06-17 Behdad Esfahbod <behdad@gnome.org> + + * gtk/gtkfontsel.c: List font sizes 6 and 7pt too. (#440450, + Sebastien Bacher, Alex "weej" Jones) + 2007-06-16 Yevgen Muntyan <muntyan@tamu.edu> * gtk/gtktextdisplay.c (render_para): fixed couple of drawing diff --git a/gtk/gtkfontsel.c b/gtk/gtkfontsel.c index 5be9b7cf0b..317e3369ad 100644 --- a/gtk/gtkfontsel.c +++ b/gtk/gtkfontsel.c @@ -88,7 +88,7 @@ /* These are what we use as the standard font sizes, for the size list. */ static const guint16 font_sizes[] = { - 8, 9, 10, 11, 12, 13, 14, 16, 18, 20, 22, 24, 26, 28, + 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 18, 20, 22, 24, 26, 28, 32, 36, 40, 48, 56, 64, 72 }; |