aboutsummaryrefslogtreecommitdiffstats
path: root/src/ephy-history-window.c
diff options
context:
space:
mode:
authorDavid Bordoley <bordoley@msu.edu>2003-05-01 00:58:56 +0800
committerDave Bordoley <Bordoley@src.gnome.org>2003-05-01 00:58:56 +0800
commita2cc71e51c55bd11d65facb13c8915f774ef3bac (patch)
treedcaca2998a73778b434bc2102894fe623d496cb6 /src/ephy-history-window.c
parent6a6479ca2b2c1fd5aa78c860299d1a96ef51f199 (diff)
downloadgsoc2013-epiphany-a2cc71e51c55bd11d65facb13c8915f774ef3bac.tar
gsoc2013-epiphany-a2cc71e51c55bd11d65facb13c8915f774ef3bac.tar.gz
gsoc2013-epiphany-a2cc71e51c55bd11d65facb13c8915f774ef3bac.tar.bz2
gsoc2013-epiphany-a2cc71e51c55bd11d65facb13c8915f774ef3bac.tar.lz
gsoc2013-epiphany-a2cc71e51c55bd11d65facb13c8915f774ef3bac.tar.xz
gsoc2013-epiphany-a2cc71e51c55bd11d65facb13c8915f774ef3bac.tar.zst
gsoc2013-epiphany-a2cc71e51c55bd11d65facb13c8915f774ef3bac.zip
Don't set/save window position if it is maximized.
2003-04-30 David Bordoley <bordoley@msu.edu> * lib/ephy-state.c: (ephy_state_window_set_position), (ephy_state_window_save_position): Don't set/save window position if it is maximized. * src/ephy-history-window.c: (ephy_history_window_construct): * src/bookmarks/ephy-bookmarks-editor.c: (ephy_bookmarks_editor_construct): Don't set the shadow_type to GTK_SHADOW_IN the ScrolledWindows. It breaks some fitts law considerations, and really amounts to just visual noise.
Diffstat (limited to 'src/ephy-history-window.c')
-rw-r--r--src/ephy-history-window.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/ephy-history-window.c b/src/ephy-history-window.c
index 36c9a013f..c69139bb3 100644
--- a/src/ephy-history-window.c
+++ b/src/ephy-history-window.c
@@ -860,7 +860,6 @@ ephy_history_window_construct (EphyHistoryWindow *editor)
"vadjustment", NULL,
"hscrollbar_policy", GTK_POLICY_AUTOMATIC,
"vscrollbar_policy", GTK_POLICY_AUTOMATIC,
- "shadow_type", GTK_SHADOW_IN,
NULL);
gtk_paned_add1 (GTK_PANED (hpaned), scrolled_window);
gtk_widget_show (scrolled_window);
@@ -895,14 +894,12 @@ ephy_history_window_construct (EphyHistoryWindow *editor)
build_search_box (editor),
FALSE, FALSE, 0);
-
/* Pages View */
scrolled_window = g_object_new (GTK_TYPE_SCROLLED_WINDOW,
"hadjustment", NULL,
"vadjustment", NULL,
"hscrollbar_policy", GTK_POLICY_AUTOMATIC,
"vscrollbar_policy", GTK_POLICY_AUTOMATIC,
- "shadow_type", GTK_SHADOW_IN,
NULL);
gtk_box_pack_start (GTK_BOX (vbox), scrolled_window, TRUE, TRUE, 0);
gtk_widget_show (scrolled_window);