diff options
author | Jeremy Bicha <jeremy.bicha@canonical.com> | 2022-04-27 15:34:04 -0400 |
---|---|---|
committer | Jeremy Bicha <jeremy.bicha@canonical.com> | 2022-04-27 15:34:04 -0400 |
commit | bf559d3363a39aa0c94c2ff9537fea70cc3ff3ce (patch) | |
tree | e966d8ffbea3c6805486890535b717227098934f /src | |
parent | Update debian/watch (diff) | |
parent | New upstream version 3.42.1 (diff) | |
download | zenity-bf559d3363a39aa0c94c2ff9537fea70cc3ff3ce.tar.gz zenity-bf559d3363a39aa0c94c2ff9537fea70cc3ff3ce.tar.bz2 zenity-bf559d3363a39aa0c94c2ff9537fea70cc3ff3ce.zip |
Update upstream source from tag 'upstream/3.42.1'
Update to upstream version '3.42.1'
with Debian dir ecb7383fc20c2176b602cbf542f383b94277b6b8
Diffstat (limited to 'src')
-rw-r--r-- | src/msg.c | 8 | ||||
-rw-r--r-- | src/zenity.ui | 5 |
2 files changed, 8 insertions, 5 deletions
@@ -202,12 +202,10 @@ zenity_msg (ZenityData *data, ZenityMsgData *msg_data) { if (data->width > -1) gtk_widget_set_size_request (GTK_WIDGET (text), data->width, -1); else if (!msg_data->ellipsize && !msg_data->no_wrap) { - // the magic number 60 is picked from gtk+/gtk/ui/gtkmessagedialog.ui - // however, 60 would increase the distance between the icon and the - // text, - // decreasing to 10 fix it. + /* The magic number 60 is taken from gtk+/gtk/ui/gtkmessagedialog.ui + with 10 as a minimum width. */ gtk_label_set_width_chars (GTK_LABEL (text), 10); - gtk_label_set_max_width_chars (GTK_LABEL (text), 10); + gtk_label_set_max_width_chars (GTK_LABEL (text), 60); } if (data->modal) diff --git a/src/zenity.ui b/src/zenity.ui index 13594422..c1a367c3 100644 --- a/src/zenity.ui +++ b/src/zenity.ui @@ -46,6 +46,7 @@ <property name="can_focus">True</property> <property name="can_default">True</property> <property name="receives_default">False</property> + <property name="has_default">True</property> </object> <packing> <property name="expand">False</property> @@ -465,6 +466,7 @@ <property name="title" translatable="yes">Error</property> <property name="window_position">center</property> <property name="type_hint">dialog</property> + <property name="resizable">false</property> <signal name="destroy" handler="gtk_main_quit" swapped="no"/> <child internal-child="vbox"> <object class="GtkBox" id="dialog-vbox7"> @@ -681,6 +683,7 @@ <property name="title" translatable="yes">Information</property> <property name="window_position">center</property> <property name="type_hint">dialog</property> + <property name="resizable">false</property> <signal name="destroy" handler="gtk_main_quit" swapped="no"/> <child internal-child="vbox"> <object class="GtkBox" id="dialog-vbox9"> @@ -882,6 +885,7 @@ <property name="title" translatable="yes">Question</property> <property name="window_position">center</property> <property name="type_hint">dialog</property> + <property name="resizable">false</property> <signal name="destroy" handler="gtk_main_quit" swapped="no"/> <child internal-child="vbox"> <object class="GtkBox" id="dialog-vbox3"> @@ -1064,6 +1068,7 @@ <property name="title" translatable="yes">Warning</property> <property name="window_position">center</property> <property name="type_hint">dialog</property> + <property name="resizable">false</property> <signal name="destroy" handler="gtk_main_quit" swapped="no"/> <child internal-child="vbox"> <object class="GtkBox" id="dialog-vbox1"> |