1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2025-03-04 10:38:13 +00:00

(trunk gtk) #3777 "Ellipsize Error: line" -- fixed.

This commit is contained in:
Charles Kerr 2010-11-29 12:42:12 +00:00
parent 655c22a033
commit c9af96eb43

View file

@ -976,8 +976,11 @@ info_page_new( struct DetailsImpl * di )
hig_workarea_add_row( t, &row, _( "Last activity:" ), l, NULL );
/* error */
l = di->error_lb = gtk_label_new( NULL );
l = g_object_new( GTK_TYPE_LABEL, "selectable", TRUE,
"ellipsize", PANGO_ELLIPSIZE_END,
NULL );
hig_workarea_add_row( t, &row, _( "Error:" ), l, NULL );
di->error_lb = l;
hig_workarea_add_section_divider( t, &row );