diff options
author | Marco Pesenti Gritti <marco@it.gnome.org> | 2003-02-26 18:49:41 +0800 |
---|---|---|
committer | Marco Pesenti Gritti <mpeseng@src.gnome.org> | 2003-02-26 18:49:41 +0800 |
commit | 49487ca10a9278035c6ee14ee237f7bed7a4ef99 (patch) | |
tree | 5ca7ba21237b777c3e468ea87b36dd86a794ccdd | |
parent | 2227b7a87f73bea0b61e92aa003d7a5a77c1a583 (diff) | |
download | gsoc2013-epiphany-49487ca10a9278035c6ee14ee237f7bed7a4ef99.tar gsoc2013-epiphany-49487ca10a9278035c6ee14ee237f7bed7a4ef99.tar.gz gsoc2013-epiphany-49487ca10a9278035c6ee14ee237f7bed7a4ef99.tar.bz2 gsoc2013-epiphany-49487ca10a9278035c6ee14ee237f7bed7a4ef99.tar.lz gsoc2013-epiphany-49487ca10a9278035c6ee14ee237f7bed7a4ef99.tar.xz gsoc2013-epiphany-49487ca10a9278035c6ee14ee237f7bed7a4ef99.tar.zst gsoc2013-epiphany-49487ca10a9278035c6ee14ee237f7bed7a4ef99.zip |
Remove an hack used to work around a fixed combo problem
2003-02-26 Marco Pesenti Gritti <marco@it.gnome.org>
* src/appearance-prefs.c: (setup_font_menu):
Remove an hack used to work around a fixed combo problem
* src/ephy-shell.c: (ephy_shell_command_cb):
Use info dialog for mozilla bookmarks imported, not error.
-rw-r--r-- | ChangeLog | 10 | ||||
-rwxr-xr-x | src/appearance-prefs.c | 7 | ||||
-rw-r--r-- | src/ephy-shell.c | 2 |
3 files changed, 11 insertions, 8 deletions
@@ -1,5 +1,15 @@ 2003-02-26 Marco Pesenti Gritti <marco@it.gnome.org> + * src/appearance-prefs.c: (setup_font_menu): + + Remove an hack used to work around a fixed combo problem + + * src/ephy-shell.c: (ephy_shell_command_cb): + + Use info dialog for mozilla bookmarks imported, not error. + +2003-02-26 Marco Pesenti Gritti <marco@it.gnome.org> + * lib/ephy-autocompletion.c: (ephy_autocompletion_init), (ephy_autocompletion_reset), (ephy_autocompletion_set_key), (ephy_autocompletion_update_matches): diff --git a/src/appearance-prefs.c b/src/appearance-prefs.c index 85c4d91b9..72d275f35 100755 --- a/src/appearance-prefs.c +++ b/src/appearance-prefs.c @@ -201,13 +201,6 @@ setup_font_menu (AppearancePrefs *dialog, name = default_font; } - /* put the default font at the top in the list */ - if (name != NULL) - { - fonts = g_list_prepend (fonts, - (gpointer)g_strdup(name)); - } - /* set popdown doesnt like NULL */ if (fonts == NULL) { diff --git a/src/ephy-shell.c b/src/ephy-shell.c index 9dfccb49f..dd8ac4eca 100644 --- a/src/ephy-shell.c +++ b/src/ephy-shell.c @@ -145,7 +145,7 @@ ephy_shell_command_cb (EphyEmbedShell *shell, dialog = gtk_message_dialog_new (NULL, GTK_DIALOG_MODAL, - GTK_MESSAGE_ERROR, + GTK_MESSAGE_INFO, GTK_BUTTONS_OK, _("Mozilla bookmarks imported successfully.")); } |