diff options
author | Marco Pesenti Gritti <marco@gnome.org> | 2004-10-08 20:18:58 +0800 |
---|---|---|
committer | Marco Pesenti Gritti <marco@src.gnome.org> | 2004-10-08 20:18:58 +0800 |
commit | 244b0d64db282670ab2f0d6baa49366708ad26e8 (patch) | |
tree | 1c6f8b3352d93081b40dfa2adfcdbb155e748ee1 /src/pdm-dialog.c | |
parent | 38fd32a8c0541a959537161ac7dd8737a0c86b7b (diff) | |
download | gsoc2013-epiphany-244b0d64db282670ab2f0d6baa49366708ad26e8.tar.gz gsoc2013-epiphany-244b0d64db282670ab2f0d6baa49366708ad26e8.tar.zst gsoc2013-epiphany-244b0d64db282670ab2f0d6baa49366708ad26e8.zip |
reviewed by: Christian Persch <chpe@cvs.gnome.org>
2004-10-08 Marco Pesenti Gritti <marco@gnome.org>
reviewed by: Christian Persch <chpe@cvs.gnome.org>
* lib/ephy-dialog.c: (setup_default_size):
* lib/ephy-state.c: (create_window_node), (ephy_state_add_window):
* lib/ephy-state.h:
* src/bookmarks/ephy-bookmark-properties.c: (build_ui):
* src/bookmarks/ephy-bookmarks-editor.c:
(ephy_bookmarks_editor_construct):
* src/bookmarks/ephy-new-bookmark.c: (ephy_new_bookmark_construct):
* src/ephy-history-window.c: (ephy_history_window_construct):
* src/ephy-window.c: (ephy_window_show):
* src/pdm-dialog.c: (show_cookies_properties):
* src/window-commands.c: (window_cmd_edit_toolbar):
Allow to set the default window state to maximize.
Default to maximize for the browser window.
Diffstat (limited to 'src/pdm-dialog.c')
-rwxr-xr-x | src/pdm-dialog.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/pdm-dialog.c b/src/pdm-dialog.c index e99a872bd..89876bf9b 100755 --- a/src/pdm-dialog.c +++ b/src/pdm-dialog.c @@ -907,7 +907,8 @@ show_cookies_properties (PdmDialog *dialog, GTK_DIALOG_MODAL, GTK_STOCK_CLOSE, 0, NULL); ephy_state_add_window (GTK_WIDGET (gdialog), "cookie_properties", - -1, -1, EPHY_STATE_WINDOW_SAVE_SIZE | EPHY_STATE_WINDOW_SAVE_POSITION); + -1, -1, FALSE, + EPHY_STATE_WINDOW_SAVE_SIZE | EPHY_STATE_WINDOW_SAVE_POSITION); gtk_dialog_set_has_separator (GTK_DIALOG(gdialog), FALSE); gtk_container_set_border_width (GTK_CONTAINER(gdialog), 6); |