diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2004-07-31 21:18:03 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2004-07-31 21:18:03 +0800 |
commit | c9294601d6951d8745cbcbf8c24112d3a1e78d35 (patch) | |
tree | 66dfe2fcaf9f419bb7555dbb7bad3b3b92cea765 | |
parent | 814d4259404ed6275ae48f2ebd4d2f1cc9597ecb (diff) | |
download | gsoc2013-epiphany-c9294601d6951d8745cbcbf8c24112d3a1e78d35.tar gsoc2013-epiphany-c9294601d6951d8745cbcbf8c24112d3a1e78d35.tar.gz gsoc2013-epiphany-c9294601d6951d8745cbcbf8c24112d3a1e78d35.tar.bz2 gsoc2013-epiphany-c9294601d6951d8745cbcbf8c24112d3a1e78d35.tar.lz gsoc2013-epiphany-c9294601d6951d8745cbcbf8c24112d3a1e78d35.tar.xz gsoc2013-epiphany-c9294601d6951d8745cbcbf8c24112d3a1e78d35.tar.zst gsoc2013-epiphany-c9294601d6951d8745cbcbf8c24112d3a1e78d35.zip |
Start the directory choose in the home dir. Fixes bug #146055.
2004-07-31 Christian Persch <chpe@cvs.gnome.org>
* src/prefs-dialog.c: (prefs_download_path_button_clicked_cb):
Start the directory choose in the home dir. Fixes bug #146055.
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | src/prefs-dialog.c | 2 |
2 files changed, 8 insertions, 0 deletions
@@ -1,5 +1,11 @@ 2004-07-31 Christian Persch <chpe@cvs.gnome.org> + * src/prefs-dialog.c: (prefs_download_path_button_clicked_cb): + + Start the directory choose in the home dir. Fixes bug #146055. + +2004-07-31 Christian Persch <chpe@cvs.gnome.org> + * src/bookmarks/ephy-bookmarks-menu.c: (ensure_folder), (create_submenu): diff --git a/src/prefs-dialog.c b/src/prefs-dialog.c index a74ecb9f6..4d0eff0f1 100644 --- a/src/prefs-dialog.c +++ b/src/prefs-dialog.c @@ -1323,6 +1323,8 @@ prefs_download_path_button_clicked_cb (GtkWidget *button, GTK_WIDGET (parent), GTK_FILE_CHOOSER_ACTION_SELECT_FOLDER, NULL, EPHY_FILE_FILTER_NONE); + gtk_file_chooser_set_current_folder (GTK_FILE_CHOOSER (fc), + g_get_home_dir ()); g_signal_connect (GTK_DIALOG (fc), "response", G_CALLBACK (download_path_response_cb), |