diff options
author | Glynn Foster <glynn.foster@sun.com> | 2004-07-18 23:40:20 +0000 |
---|---|---|
committer | Glynn Foster <gman@src.gnome.org> | 2004-07-18 23:40:20 +0000 |
commit | 6a17938c959a4418d2c42ef903fa40916defae2f (patch) | |
tree | 93c11fa13b80315b865e4f55a51efe2ca6d4ed3f | |
parent | Fix up compilation using Forte compiler. Based on patch from Ivan Noris. (diff) | |
download | zenity-6a17938c959a4418d2c42ef903fa40916defae2f.tar.gz zenity-6a17938c959a4418d2c42ef903fa40916defae2f.tar.bz2 zenity-6a17938c959a4418d2c42ef903fa40916defae2f.zip |
Make sure the text can take markup, so that people can create nice HIG
2004-07-19 Glynn Foster <glynn.foster@sun.com>
* src/msg.c: Make sure the text can take markup, so
that people can create nice HIG compliant message
dialogs. Patch from Sebastian Heinlein. Fixes #140748.
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | src/msg.c | 2 |
2 files changed, 7 insertions, 1 deletions
@@ -1,5 +1,11 @@ 2004-07-19 Glynn Foster <glynn.foster@sun.com> + * src/msg.c: Make sure the text can take markup, so + that people can create nice HIG compliant message + dialogs. Patch from Sebastian Heinlein. Fixes #140748. + +2004-07-19 Glynn Foster <glynn.foster@sun.com> + * configure.in, src/Makefile.am: Fix up compilation using Forte compiler. Based on patch from Ivan Noris. Fixes #143041. @@ -112,7 +112,7 @@ zenity_msg (ZenityData *data, ZenityMsgData *msg_data) gtk_window_set_default_size (GTK_WINDOW (dialog), data->width, data->height); if (msg_data->dialog_text) - gtk_label_set_text (GTK_LABEL (text), msg_data->dialog_text); + gtk_label_set_markup (GTK_LABEL (text), msg_data->dialog_text); zenity_util_show_dialog (dialog); gtk_main (); |