diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2005-10-03 06:35:20 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2005-10-03 06:35:20 +0800 |
commit | a49c3e1842374ae022f2c8d203882e75d71123a9 (patch) | |
tree | fbc543903539a7177c590a3fc206c8f0fbf183ba /src/bookmarks | |
parent | bc28c27d07ae56467c45666ba6595901a99eadbe (diff) | |
download | gsoc2013-epiphany-a49c3e1842374ae022f2c8d203882e75d71123a9.tar gsoc2013-epiphany-a49c3e1842374ae022f2c8d203882e75d71123a9.tar.gz gsoc2013-epiphany-a49c3e1842374ae022f2c8d203882e75d71123a9.tar.bz2 gsoc2013-epiphany-a49c3e1842374ae022f2c8d203882e75d71123a9.tar.lz gsoc2013-epiphany-a49c3e1842374ae022f2c8d203882e75d71123a9.tar.xz gsoc2013-epiphany-a49c3e1842374ae022f2c8d203882e75d71123a9.tar.zst gsoc2013-epiphany-a49c3e1842374ae022f2c8d203882e75d71123a9.zip |
Use "position" property notification instead of size-allocate to monitor
2005-10-03 Christian Persch <chpe@cvs.gnome.org>
* lib/ephy-state.c: (paned_sync_position_cb),
(ephy_state_add_paned):
Use "position" property notification instead of
size-allocate to monitor the paned's position.
* src/bookmarks/ephy-bookmarks-editor.c:
(ephy_bookmarks_editor_construct):
Use resize=FALSE with gtk_paned_pack1. Fixes growing size of
the left pane of the bookmarks editor by repeated opening.
Diffstat (limited to 'src/bookmarks')
-rw-r--r-- | src/bookmarks/ephy-bookmarks-editor.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bookmarks/ephy-bookmarks-editor.c b/src/bookmarks/ephy-bookmarks-editor.c index 068e9723b..24dbeedac 100644 --- a/src/bookmarks/ephy-bookmarks-editor.c +++ b/src/bookmarks/ephy-bookmarks-editor.c @@ -1687,7 +1687,7 @@ ephy_bookmarks_editor_construct (EphyBookmarksEditor *editor) "vscrollbar_policy", GTK_POLICY_AUTOMATIC, "shadow_type", GTK_SHADOW_IN, NULL); - gtk_paned_pack1 (GTK_PANED (hpaned), GTK_WIDGET (scrolled_window), TRUE, TRUE); + gtk_paned_pack1 (GTK_PANED (hpaned), GTK_WIDGET (scrolled_window), FALSE, TRUE); gtk_widget_show (scrolled_window); /* Keywords View */ |