summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrustyBSD <rustyBSD@gmx.fr>2012-05-21 16:44:04 -0400
committerCosimo Cecchi <cosimoc@gnome.org>2012-05-21 16:47:43 -0400
commitb774a3daa236cc89608ba8eaeaae805acc58426e (patch)
tree6e623f1322f324e14376a2c96963e76fcc1c4ef7
parentc733249a57b85f07e525a115ca460229c5ed3766 (diff)
downloadnautilus-b774a3daa236cc89608ba8eaeaae805acc58426e.tar.gz
image-properties: set the description label to wrap
Or images with a very long description will create a label that is bigger than the whole screen. https://bugzilla.gnome.org/show_bug.cgi?id=566411
-rw-r--r--src/nautilus-image-properties-page.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nautilus-image-properties-page.c b/src/nautilus-image-properties-page.c
index 628cf4913..cef017cee 100644
--- a/src/nautilus-image-properties-page.c
+++ b/src/nautilus-image-properties-page.c
@@ -143,6 +143,7 @@ append_label (GtkWidget *vbox,
* selectable but without the cursor showing.
*/
gtk_widget_set_can_focus (label, FALSE);
+ gtk_label_set_line_wrap (GTK_LABEL (label), TRUE);
gtk_box_pack_start (GTK_BOX (vbox), label, FALSE, FALSE, 0);
gtk_widget_show (label);