summaryrefslogtreecommitdiff
path: root/src/msg.c
diff options
context:
space:
mode:
authorJeremy Bícha <jeremy.bicha@canonical.com>2023-08-10 14:14:33 -0400
committerJeremy Bícha <jeremy.bicha@canonical.com>2023-08-10 14:14:33 -0400
commit1b96d51275d1d913188767ed74c874ef5dedd2e4 (patch)
treeaaa1a66d3397c5b03be6e6ae9af8f54aa9386453 /src/msg.c
parentNew upstream version 3.44.0 (diff)
parent3.44.2 (diff)
downloadzenity-1b96d51275d1d913188767ed74c874ef5dedd2e4.tar.gz
zenity-1b96d51275d1d913188767ed74c874ef5dedd2e4.tar.bz2
zenity-1b96d51275d1d913188767ed74c874ef5dedd2e4.zip
New upstream version 3.44.2
Diffstat (limited to 'src/msg.c')
-rw-r--r--src/msg.c18
1 files changed, 17 insertions, 1 deletions
diff --git a/src/msg.c b/src/msg.c
index 92651525..641dad6c 100644
--- a/src/msg.c
+++ b/src/msg.c
@@ -199,8 +199,24 @@ zenity_msg (ZenityData *data, ZenityMsgData *msg_data) {
gtk_window_set_default_size (
GTK_WINDOW (dialog), data->width, data->height);
- if (data->width > -1)
+ if (data->width > -1) {
gtk_widget_set_size_request (GTK_WIDGET (text), data->width, -1);
+
+ if (!msg_data->no_wrap) {
+ /* Minimum width */
+ gtk_label_set_width_chars (GTK_LABEL(text), 10);
+
+ /* If we don't set max-width-chars, gtk may set the natural width
+ * of the label to be wider than what we want for the window. So we
+ * want to set it to something relatively small, because,
+ * according to TFM, even if max_width_chars is set to anything
+ * other than -1, for wrapping labels the label will still be
+ * rewrapped to use all of the available width. So we'll just set
+ * it to the same value as width-chars for posterity.
+ */
+ gtk_label_set_max_width_chars (GTK_LABEL(text), 10);
+ }
+ }
else if (!msg_data->ellipsize && !msg_data->no_wrap) {
/* The magic number 60 is taken from gtk+/gtk/ui/gtkmessagedialog.ui
with 10 as a minimum width. */
bgstack15