diff options
author | Marco Pesenti Gritti <marco@it.gnome.org> | 2003-07-15 03:02:43 +0800 |
---|---|---|
committer | Marco Pesenti Gritti <mpeseng@src.gnome.org> | 2003-07-15 03:02:43 +0800 |
commit | e48096489f85e377473deaee4ca9a46bba7d89bd (patch) | |
tree | 7ff88ce90f93f2d9ee77a00ad2b93ca87f73ccf7 | |
parent | d1df267f3880d560d778edb115a63acce689737f (diff) | |
download | gsoc2013-epiphany-e48096489f85e377473deaee4ca9a46bba7d89bd.tar gsoc2013-epiphany-e48096489f85e377473deaee4ca9a46bba7d89bd.tar.gz gsoc2013-epiphany-e48096489f85e377473deaee4ca9a46bba7d89bd.tar.bz2 gsoc2013-epiphany-e48096489f85e377473deaee4ca9a46bba7d89bd.tar.lz gsoc2013-epiphany-e48096489f85e377473deaee4ca9a46bba7d89bd.tar.xz gsoc2013-epiphany-e48096489f85e377473deaee4ca9a46bba7d89bd.tar.zst gsoc2013-epiphany-e48096489f85e377473deaee4ca9a46bba7d89bd.zip |
No need to setup fonts on init, it will be done when the default encoding
2003-07-14 Marco Pesenti Gritti <marco@it.gnome.org>
* configure.in:
* src/prefs-dialog.c: (prefs_dialog_init):
No need to setup fonts on init, it will be done
when the default encoding is set.
-rw-r--r-- | ChangeLog | 8 | ||||
-rw-r--r-- | configure.in | 2 | ||||
-rw-r--r-- | src/prefs-dialog.c | 2 |
3 files changed, 9 insertions, 3 deletions
@@ -1,5 +1,13 @@ 2003-07-14 Marco Pesenti Gritti <marco@it.gnome.org> + * configure.in: + * src/prefs-dialog.c: (prefs_dialog_init): + + No need to setup fonts on init, it will be done + when the default encoding is set. + +2003-07-14 Marco Pesenti Gritti <marco@it.gnome.org> + * embed/mozilla/mozilla-embed-single.cpp: List all mozilla fonts and not only the language specific, diff --git a/configure.in b/configure.in index dca04e6b8..627ebd613 100644 --- a/configure.in +++ b/configure.in @@ -1,6 +1,6 @@ dnl Process this file with autoconf to produce a configure script. -AC_INIT(epiphany, 0.7.3, +AC_INIT(epiphany, 0.8.0, [http://bugzilla.gnome.org/enter_bug.cgi?product=epiphany]) EPIPHANY_MAJOR=1.0 diff --git a/src/prefs-dialog.c b/src/prefs-dialog.c index 691517133..7280f7650 100644 --- a/src/prefs-dialog.c +++ b/src/prefs-dialog.c @@ -1106,8 +1106,6 @@ prefs_dialog_init (PrefsDialog *pd) pd->priv->switching = FALSE; create_fonts_language_menu (pd); - setup_fonts (pd); - setup_size_controls (pd); attach_fonts_signals (pd); attach_size_controls_signals (pd); create_languages_list (pd); |