aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDiego Escalante Urrelo <diegoe@src.gnome.org>2007-09-30 20:58:24 +0800
committerDiego Escalante Urrelo <diegoe@src.gnome.org>2007-09-30 20:58:24 +0800
commit8c8b026fc6c22677eb05255eb4e1bbf1bda7dae3 (patch)
treece0a92a20c03fd5fba25611a231cb99ba78ad546 /src
parentd09bb750b80c245545bb8e97ce9070d9f3d31310 (diff)
downloadgsoc2013-epiphany-8c8b026fc6c22677eb05255eb4e1bbf1bda7dae3.tar
gsoc2013-epiphany-8c8b026fc6c22677eb05255eb4e1bbf1bda7dae3.tar.gz
gsoc2013-epiphany-8c8b026fc6c22677eb05255eb4e1bbf1bda7dae3.tar.bz2
gsoc2013-epiphany-8c8b026fc6c22677eb05255eb4e1bbf1bda7dae3.tar.lz
gsoc2013-epiphany-8c8b026fc6c22677eb05255eb4e1bbf1bda7dae3.tar.xz
gsoc2013-epiphany-8c8b026fc6c22677eb05255eb4e1bbf1bda7dae3.tar.zst
gsoc2013-epiphany-8c8b026fc6c22677eb05255eb4e1bbf1bda7dae3.zip
Make the location entry completion cells smarter, now bookmarks take the full
width of the popup. Also make the extracell (titles of history entries) align to the left so it's less messy and easier to browse a lot of entries with similar titles. Almost-fixes bug #419475. svn path=/trunk/; revision=7508
Diffstat (limited to 'src')
-rw-r--r--src/ephy-completion-model.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/ephy-completion-model.c b/src/ephy-completion-model.c
index c15286309..5e6b80c2d 100644
--- a/src/ephy-completion-model.c
+++ b/src/ephy-completion-model.c
@@ -499,7 +499,10 @@ ephy_completion_model_get_value (GtkTreeModel *tree_model,
{
case EPHY_COMPLETION_EXTRA_COL:
g_value_init (value, G_TYPE_STRING);
- /* We set an additional text for the item title only for history, since we assume that people know the url of their bookmarks */
+ /* We set an additional text for the item title only for
+ * history, since we assume that people know the url of
+ * their bookmarks
+ */
if (group == HISTORY_GROUP)
{
const char *text;