diff options
author | Christian Persch <chpe@src.gnome.org> | 2008-03-31 08:03:45 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2008-03-31 08:03:45 +0800 |
commit | de8872ec4800156389fc4a124ceb3f8d15743ad7 (patch) | |
tree | ecb7a96d6737aab602de53710ffe021fa225d001 /lib | |
parent | c6b37a79901386932d5018e8e282b4faa775816c (diff) | |
download | gsoc2013-epiphany-de8872ec4800156389fc4a124ceb3f8d15743ad7.tar.gz gsoc2013-epiphany-de8872ec4800156389fc4a124ceb3f8d15743ad7.tar.zst gsoc2013-epiphany-de8872ec4800156389fc4a124ceb3f8d15743ad7.zip |
Make the extra column pack-end so that when we hide it when it's empty, the other column expands. This makes bookmarks take up all the space instead of being truncated at the half.
svn path=/trunk/; revision=8173
Diffstat (limited to 'lib')
-rw-r--r-- | lib/widgets/ephy-location-entry.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/widgets/ephy-location-entry.c b/lib/widgets/ephy-location-entry.c index 6bd3af9ef..b66be340e 100644 --- a/lib/widgets/ephy-location-entry.c +++ b/lib/widgets/ephy-location-entry.c @@ -1076,8 +1076,8 @@ ephy_location_entry_set_completion (EphyLocationEntry *le, "alignment", PANGO_ALIGN_LEFT, NULL); - gtk_cell_layout_pack_start (GTK_CELL_LAYOUT (completion), - le->priv->extracell, TRUE); + gtk_cell_layout_pack_end (GTK_CELL_LAYOUT (completion), + le->priv->extracell, TRUE); gtk_cell_layout_set_cell_data_func (GTK_CELL_LAYOUT (completion), le->priv->extracell, extracell_data_func, |