diff options
author | Jeremy Bicha <jbicha@debian.org> | 2021-09-19 08:31:04 -0400 |
---|---|---|
committer | Jeremy Bicha <jbicha@debian.org> | 2021-09-19 08:31:04 -0400 |
commit | 8be77dbb38d2d96e66cadc38a9adb30f161c7ad0 (patch) | |
tree | d6d626e993d2ba4c301cb27346022e568d965c21 /src/msg.c | |
parent | New upstream version 3.32.0 (diff) | |
parent | Bump version for 3.41.0 (diff) | |
download | zenity-8be77dbb38d2d96e66cadc38a9adb30f161c7ad0.tar.gz zenity-8be77dbb38d2d96e66cadc38a9adb30f161c7ad0.tar.bz2 zenity-8be77dbb38d2d96e66cadc38a9adb30f161c7ad0.zip |
New upstream version 3.41.0
Diffstat (limited to 'src/msg.c')
-rw-r--r-- | src/msg.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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) |