diff options
author | Marco Pesenti Gritti <marco@gnome.org> | 2003-10-18 16:33:08 +0800 |
---|---|---|
committer | Marco Pesenti Gritti <marco@src.gnome.org> | 2003-10-18 16:33:08 +0800 |
commit | ed1beb51d5c674250dcb31db142c6cb27f996fcf (patch) | |
tree | df192aa0f0c0196644ddf996fc447a40cef1d88b | |
parent | a515135e03680b5e6cae67a16b5d6f8f43b8a8ef (diff) | |
download | gsoc2013-epiphany-ed1beb51d5c674250dcb31db142c6cb27f996fcf.tar gsoc2013-epiphany-ed1beb51d5c674250dcb31db142c6cb27f996fcf.tar.gz gsoc2013-epiphany-ed1beb51d5c674250dcb31db142c6cb27f996fcf.tar.bz2 gsoc2013-epiphany-ed1beb51d5c674250dcb31db142c6cb27f996fcf.tar.lz gsoc2013-epiphany-ed1beb51d5c674250dcb31db142c6cb27f996fcf.tar.xz gsoc2013-epiphany-ed1beb51d5c674250dcb31db142c6cb27f996fcf.tar.zst gsoc2013-epiphany-ed1beb51d5c674250dcb31db142c6cb27f996fcf.zip |
Show encoding menu also when empty, fix oddness when opening View menu
2003-10-18 Marco Pesenti Gritti <marco@gnome.org>
* src/ephy-window.c: (setup_window):
Show encoding menu also when empty, fix
oddness when opening View menu
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | src/ephy-window.c | 3 |
2 files changed, 10 insertions, 0 deletions
@@ -1,5 +1,12 @@ 2003-10-18 Marco Pesenti Gritti <marco@gnome.org> + * src/ephy-window.c: (setup_window): + + Show encoding menu also when empty, fix + oddness when opening View menu + +2003-10-18 Marco Pesenti Gritti <marco@gnome.org> + * embed/mozilla/EphyWrapper.cpp: Fix string for old mozilla versions. diff --git a/src/ephy-window.c b/src/ephy-window.c index c36a1c541..0ff42c00a 100644 --- a/src/ephy-window.c +++ b/src/ephy-window.c @@ -618,6 +618,9 @@ setup_window (EphyWindow *window) action = gtk_action_group_get_action (action_group, "GoBookmarks"); g_object_set (action, "is_important", TRUE, NULL); + action = gtk_action_group_get_action (action_group, "ViewEncoding"); + g_object_set (action, "hide_if_empty", FALSE, NULL); + action_group = gtk_action_group_new ("PopupsActions"); gtk_action_group_set_translation_domain (action_group, NULL); gtk_action_group_add_actions (action_group, ephy_popups_entries, |