diff options
author | Marco Pesenti Gritti <marco@gnome.org> | 2004-01-24 06:50:02 +0800 |
---|---|---|
committer | Marco Pesenti Gritti <marco@src.gnome.org> | 2004-01-24 06:50:02 +0800 |
commit | 5cee574a3ce8609ee72cd5cdea206dfc594f0dab (patch) | |
tree | 301801bc9aa0b5a8d238cdc42612114710d3c5ad /src | |
parent | 5439ea9211264c06dcc3e5848f13bf95a54e1923 (diff) | |
download | gsoc2013-epiphany-5cee574a3ce8609ee72cd5cdea206dfc594f0dab.tar gsoc2013-epiphany-5cee574a3ce8609ee72cd5cdea206dfc594f0dab.tar.gz gsoc2013-epiphany-5cee574a3ce8609ee72cd5cdea206dfc594f0dab.tar.bz2 gsoc2013-epiphany-5cee574a3ce8609ee72cd5cdea206dfc594f0dab.tar.lz gsoc2013-epiphany-5cee574a3ce8609ee72cd5cdea206dfc594f0dab.tar.xz gsoc2013-epiphany-5cee574a3ce8609ee72cd5cdea206dfc594f0dab.tar.zst gsoc2013-epiphany-5cee574a3ce8609ee72cd5cdea206dfc594f0dab.zip |
Sometimes reading gnomedesktop flames is useful:
2004-01-23 Marco Pesenti Gritti <marco@gnome.org>
* data/epiphany.schemas.in:
* lib/ephy-prefs.h:
* src/ephy-tab.c: (ephy_tab_dom_mouse_click_cb):
* src/popup-commands.c: (save_property_url):
Sometimes reading gnomedesktop flames is useful:
Do not use the same pref of 1.0 for the download dir.
Use a different key for Save Link As.
Diffstat (limited to 'src')
-rw-r--r-- | src/ephy-tab.c | 2 | ||||
-rw-r--r-- | src/popup-commands.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/ephy-tab.c b/src/ephy-tab.c index 7f130147c..ea8c4f612 100644 --- a/src/ephy-tab.c +++ b/src/ephy-tab.c @@ -1064,7 +1064,7 @@ ephy_tab_dom_mouse_click_cb (EphyEmbed *embed, /* shift+click saves the link target */ else if (is_link && is_left_click && with_shift) { - save_property_url (embed, event, "link", CONF_STATE_DOWNLOAD_DIR); + save_property_url (embed, event, "link", CONF_STATE_SAVE_DIR); } /* shift+click saves the non-link image * Note: pressing enter to submit a form synthesizes a mouse click event diff --git a/src/popup-commands.c b/src/popup-commands.c index 666492659..8839e1935 100644 --- a/src/popup-commands.c +++ b/src/popup-commands.c @@ -295,7 +295,7 @@ save_property_url (GtkAction *action, ephy_embed_persist_set_flags (persist, ask_dest ? EMBED_PERSIST_ASK_DESTINATION : 0); ephy_embed_persist_set_persist_key - (persist, CONF_STATE_DOWNLOAD_DIR); + (persist, CONF_STATE_SAVE_DIR); ephy_embed_persist_set_source (persist, location); ephy_embed_persist_save (persist); |