From c8b9b79813c426837092ccda149bb3f2ca9c58be Mon Sep 17 00:00:00 2001 From: Lucas Rocha Date: Mon, 14 Nov 2005 04:25:58 +0000 Subject: make it possible to add new lines in the in the msg dialog (Fixes bug 2005-11-13 Lucas Rocha * src/msg.c: make it possible to add new lines in the in the msg dialog (Fixes bug #320787). --- src/msg.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/msg.c') diff --git a/src/msg.c b/src/msg.c index b400f0b..973062e 100644 --- a/src/msg.c +++ b/src/msg.c @@ -109,9 +109,9 @@ zenity_msg (ZenityData *data, ZenityMsgData *msg_data) if (data->width > -1 || data->height > -1) gtk_window_set_default_size (GTK_WINDOW (dialog), data->width, data->height); - if (msg_data->dialog_text) - gtk_label_set_markup (GTK_LABEL (text), msg_data->dialog_text); - + if (msg_data->dialog_text) + gtk_label_set_markup (GTK_LABEL (text), g_strcompress (msg_data->dialog_text)); + if (msg_data->no_wrap) gtk_label_set_line_wrap (GTK_LABEL (text), FALSE); -- cgit v1.2.3