diff options
-rw-r--r-- | ChangeLog | 6 | ||||
-rwxr-xr-x | src/pdm-dialog.c | 2 |
2 files changed, 8 insertions, 0 deletions
@@ -1,5 +1,11 @@ 2005-01-23 Christian Persch <chpe@cvs.gnome.org> + * src/pdm-dialog.c: (show_cookies_properties): + + Ellipsize the value and path labels in the cookie content dialogue. + +2005-01-23 Christian Persch <chpe@cvs.gnome.org> + * configure.ac: Check for broken context event button. diff --git a/src/pdm-dialog.c b/src/pdm-dialog.c index e163a3505..a0bf41712 100755 --- a/src/pdm-dialog.c +++ b/src/pdm-dialog.c @@ -926,6 +926,7 @@ show_cookies_properties (PdmDialog *dialog, label = gtk_label_new (info->value); gtk_label_set_selectable (GTK_LABEL (label), TRUE); + gtk_label_set_ellipsize (GTK_LABEL (label), PANGO_ELLIPSIZE_END); gtk_misc_set_alignment (GTK_MISC (label), 0, 0); gtk_widget_show (label); gtk_table_attach_defaults (GTK_TABLE (table), label, 1, 2, 0, 1); @@ -941,6 +942,7 @@ show_cookies_properties (PdmDialog *dialog, label = gtk_label_new (info->path); gtk_label_set_selectable (GTK_LABEL (label), TRUE); + gtk_label_set_ellipsize (GTK_LABEL (label), PANGO_ELLIPSIZE_END); gtk_misc_set_alignment (GTK_MISC (label), 0, 0); gtk_widget_show (label); gtk_table_attach_defaults (GTK_TABLE (table), label, 1, 2, 1, 2); |