diff options
-rw-r--r-- | ChangeLog | 13 | ||||
-rw-r--r-- | data/glade/prefs-dialog.glade | 2 | ||||
-rw-r--r-- | src/ephy-window.c | 2 |
3 files changed, 15 insertions, 2 deletions
@@ -1,5 +1,18 @@ 2003-11-20 Marco Pesenti Gritti <marco@gnome.org> + * data/glade/prefs-dialog.glade: + + Hide Open downloads pref. Since both behaviors are available + maybe it's not necessary at all. Also I feel it confusing to + have only one of the cases respecting it. I guess better + to wait feedback on releases before making a call on this. + + * src/ephy-window.c: + + No more need of ... on dowload context menu + +2003-11-20 Marco Pesenti Gritti <marco@gnome.org> + * embed/ephy-embed-single.c: (ephy_embed_single_class_init): * embed/ephy-embed-single.h: * embed/mozilla/ContentHandler.cpp: diff --git a/data/glade/prefs-dialog.glade b/data/glade/prefs-dialog.glade index 8d0f947de..dbfcd5701 100644 --- a/data/glade/prefs-dialog.glade +++ b/data/glade/prefs-dialog.glade @@ -365,7 +365,7 @@ <child> <widget class="GtkCheckButton" id="auto_open_downloads_checkbutton"> - <property name="visible">True</property> + <property name="visible">False</property> <property name="can_focus">True</property> <property name="label" translatable="yes">Automatically open "safe" downloads</property> <property name="use_underline">True</property> diff --git a/src/ephy-window.c b/src/ephy-window.c index cb45fcaaf..5e38f5f6f 100644 --- a/src/ephy-window.c +++ b/src/ephy-window.c @@ -263,7 +263,7 @@ static GtkActionEntry ephy_popups_entries [] = { NULL, G_CALLBACK (popup_cmd_link_in_new_window) }, { "OpenLinkInNewTab", NULL, N_("Open Link in New _Tab"), NULL, NULL, G_CALLBACK (popup_cmd_link_in_new_tab) }, - { "DownloadLink", GTK_STOCK_SAVE, N_("_Download Link..."), NULL, + { "DownloadLink", GTK_STOCK_SAVE, N_("_Download Link"), NULL, NULL, G_CALLBACK (popup_cmd_download_link) }, { "BookmarkLink", EPHY_STOCK_BOOKMARK_PAGE, N_("_Bookmark Link..."), NULL, NULL, G_CALLBACK (popup_cmd_bookmark_link) }, |