diff options
author | Cosimo Cecchi <cosimoc@src.gnome.org> | 2007-11-19 07:53:16 +0800 |
---|---|---|
committer | Cosimo Cecchi <cosimoc@src.gnome.org> | 2007-11-19 07:53:16 +0800 |
commit | 251fa13144d46959620edfcac81f968281dafff5 (patch) | |
tree | 2ab99d65909e468fcc23feef39d67f33a9229cef /src/bookmarks/ephy-bookmarks-editor.c | |
parent | 017dbb24e54f1afe065543ab1d6de5ea9a698be2 (diff) | |
download | gsoc2013-epiphany-251fa13144d46959620edfcac81f968281dafff5.tar gsoc2013-epiphany-251fa13144d46959620edfcac81f968281dafff5.tar.gz gsoc2013-epiphany-251fa13144d46959620edfcac81f968281dafff5.tar.bz2 gsoc2013-epiphany-251fa13144d46959620edfcac81f968281dafff5.tar.lz gsoc2013-epiphany-251fa13144d46959620edfcac81f968281dafff5.tar.xz gsoc2013-epiphany-251fa13144d46959620edfcac81f968281dafff5.tar.zst gsoc2013-epiphany-251fa13144d46959620edfcac81f968281dafff5.zip |
Adds a EPHY_NODE_VIEW_ELLIPSIZED flag and make history window and
bookmarks editor views use it to display address and title columns.
Fix bug #132808.
svn path=/trunk/; revision=7719
Diffstat (limited to 'src/bookmarks/ephy-bookmarks-editor.c')
-rw-r--r-- | src/bookmarks/ephy-bookmarks-editor.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/bookmarks/ephy-bookmarks-editor.c b/src/bookmarks/ephy-bookmarks-editor.c index 5ad6f0b9b..ac2159f71 100644 --- a/src/bookmarks/ephy-bookmarks-editor.c +++ b/src/bookmarks/ephy-bookmarks-editor.c @@ -1938,7 +1938,8 @@ ephy_bookmarks_editor_construct (EphyBookmarksEditor *editor) G_TYPE_STRING, EPHY_NODE_BMK_PROP_TITLE, EPHY_NODE_VIEW_EDITABLE | EPHY_NODE_VIEW_SEARCHABLE | - EPHY_NODE_VIEW_SORTABLE, + EPHY_NODE_VIEW_SORTABLE | + EPHY_NODE_VIEW_ELLIPSIZED, provide_favicon, &(editor->priv->title_col)); gtk_tree_view_column_set_min_width (editor->priv->title_col, 300); gtk_tree_view_column_set_resizable (editor->priv->title_col, TRUE); @@ -1946,7 +1947,9 @@ ephy_bookmarks_editor_construct (EphyBookmarksEditor *editor) url_col_id = ephy_node_view_add_column (EPHY_NODE_VIEW (bm_view), _("Address"), G_TYPE_STRING, EPHY_NODE_BMK_PROP_LOCATION, - EPHY_NODE_VIEW_SORTABLE, NULL, &(editor->priv->address_col)); + EPHY_NODE_VIEW_SORTABLE | + EPHY_NODE_VIEW_ELLIPSIZED, + NULL, &(editor->priv->address_col)); gtk_tree_view_column_set_min_width (editor->priv->address_col, 300); gtk_tree_view_column_set_resizable (editor->priv->address_col, TRUE); |