diff options
author | Diego Escalante Urrelo <diegoe@igalia.com> | 2012-03-28 06:16:45 +0800 |
---|---|---|
committer | Diego Escalante Urrelo <diegoe@igalia.com> | 2012-03-31 03:58:55 +0800 |
commit | 638b4684c7e4fddfffe7458e6fe2992199df9da1 (patch) | |
tree | 4e8a5937da3c19261d646f10debc1a7748b0f6c2 /lib/widgets | |
parent | dda0c52f01b5e15cef6dc4a64e6ac4abb086dcdd (diff) | |
download | gsoc2013-epiphany-638b4684c7e4fddfffe7458e6fe2992199df9da1.tar.gz gsoc2013-epiphany-638b4684c7e4fddfffe7458e6fe2992199df9da1.tar.zst gsoc2013-epiphany-638b4684c7e4fddfffe7458e6fe2992199df9da1.zip |
e-location-entry: redundant ellipsize-set
https://bugzilla.gnome.org/show_bug.cgi?id=672927
Diffstat (limited to 'lib/widgets')
-rw-r--r-- | lib/widgets/ephy-location-entry.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/lib/widgets/ephy-location-entry.c b/lib/widgets/ephy-location-entry.c index a6ba5b3fe..b68838f2d 100644 --- a/lib/widgets/ephy-location-entry.c +++ b/lib/widgets/ephy-location-entry.c @@ -1034,10 +1034,7 @@ ephy_location_entry_set_completion (EphyLocationEntry *entry, cell, "pixbuf", favicon_col); cell = gtk_cell_renderer_text_new (); - g_object_set (cell, - "ellipsize", PANGO_ELLIPSIZE_END, - "ellipsize-set", TRUE, - NULL); + g_object_set (cell, "ellipsize", PANGO_ELLIPSIZE_END, NULL); gtk_cell_layout_pack_start (GTK_CELL_LAYOUT (completion), cell, TRUE); gtk_cell_layout_add_attribute (GTK_CELL_LAYOUT (completion), |