From b55591ca04cf5ae3376fb204cb7b397f7deb7fd9 Mon Sep 17 00:00:00 2001 From: Sven Neumann Date: Sun, 28 Mar 2010 12:34:38 +0200 Subject: [PATCH] Bug 614153 - Importing PDF files with long titles Ellipsize the title label. --- plug-ins/common/file-pdf.c | 1 + 1 file changed, 1 insertion(+) diff --git a/plug-ins/common/file-pdf.c b/plug-ins/common/file-pdf.c index 30b5f2d1cd..2bd8fe85aa 100644 --- a/plug-ins/common/file-pdf.c +++ b/plug-ins/common/file-pdf.c @@ -838,6 +838,7 @@ load_dialog (PopplerDocument *doc, /* Title */ title = gimp_prop_label_new (G_OBJECT (doc), "title"); + gtk_label_set_ellipsize (GTK_LABEL (title), PANGO_ELLIPSIZE_END); gtk_box_pack_start (GTK_BOX (vbox), title, FALSE, FALSE, 0); gtk_widget_show (title); -- GitLab