summaryrefslogtreecommitdiff
path: root/src/msg.c
diff options
context:
space:
mode:
authorJeremy Bicha <jbicha@debian.org>2021-09-19 08:31:12 -0400
committerJeremy Bicha <jbicha@debian.org>2021-09-19 08:31:12 -0400
commit0a9278511b4d4a3b5df9f6232cd0a427b945a630 (patch)
tree18db516364877f6dd0ebca5a0eddea7b9311b142 /src/msg.c
parentdebian/watch: Update for GNOME 40 style version numbering (diff)
parentNew upstream version 3.41.0 (diff)
downloadzenity-0a9278511b4d4a3b5df9f6232cd0a427b945a630.tar.gz
zenity-0a9278511b4d4a3b5df9f6232cd0a427b945a630.tar.bz2
zenity-0a9278511b4d4a3b5df9f6232cd0a427b945a630.zip
Update upstream source from tag 'upstream/3.41.0'
Update to upstream version '3.41.0' with Debian dir e93fe4af08d9574e6a601a2b0269cc470265904a
Diffstat (limited to 'src/msg.c')
-rw-r--r--src/msg.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/msg.c b/src/msg.c
index ca14d867..496fe185 100644
--- a/src/msg.c
+++ b/src/msg.c
@@ -206,8 +206,8 @@ zenity_msg (ZenityData *data, ZenityMsgData *msg_data) {
// however, 60 would increase the distance between the icon and the
// text,
// decreasing to 10 fix it.
- gtk_label_set_width_chars (text, 10);
- gtk_label_set_max_width_chars (text, 10);
+ gtk_label_set_width_chars (GTK_LABEL (text), 10);
+ gtk_label_set_max_width_chars (GTK_LABEL (text), 10);
}
if (data->modal)
bgstack15