From d3d252efda9074ee2296ca7f130007f5fc9bc185 Mon Sep 17 00:00:00 2001 From: monsta Date: Fri, 14 Apr 2017 11:39:27 +0300 Subject: close confirm dialog: set max width for labels fixes https://github.com/mate-desktop/pluma/issues/186 picked from: https://git.gnome.org/browse/gedit/commit/?id=90c742f2e97824878563b4bb4bb926048641dc18 https://git.gnome.org/browse/gedit/commit/?id=b783f0134ea33c96f48c528d0a5e763394881e8f --- pluma/dialogs/pluma-close-confirmation-dialog.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pluma/dialogs/pluma-close-confirmation-dialog.c b/pluma/dialogs/pluma-close-confirmation-dialog.c index a0b860f6..361d5ae6 100644 --- a/pluma/dialogs/pluma-close-confirmation-dialog.c +++ b/pluma/dialogs/pluma-close-confirmation-dialog.c @@ -513,6 +513,7 @@ build_single_doc_dialog (PlumaCloseConfirmationDialog *dlg) #endif gtk_label_set_selectable (GTK_LABEL (primary_label), TRUE); gtk_widget_set_can_focus (GTK_WIDGET (primary_label), FALSE); + gtk_label_set_max_width_chars (GTK_LABEL (primary_label), 72); doc_name = pluma_document_get_short_name_for_display (doc); @@ -550,6 +551,7 @@ build_single_doc_dialog (PlumaCloseConfirmationDialog *dlg) #endif gtk_label_set_selectable (GTK_LABEL (secondary_label), TRUE); gtk_widget_set_can_focus (GTK_WIDGET (secondary_label), FALSE); + gtk_label_set_max_width_chars (GTK_LABEL (secondary_label), 72); hbox = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 12); gtk_container_set_border_width (GTK_CONTAINER (hbox), 5); @@ -710,6 +712,7 @@ build_multiple_docs_dialog (PlumaCloseConfirmationDialog *dlg) gtk_misc_set_alignment (GTK_MISC (primary_label), 0.0, 0.5); #endif gtk_label_set_selectable (GTK_LABEL (primary_label), TRUE); + gtk_label_set_max_width_chars (GTK_LABEL (primary_label), 72); if (priv->disable_save_to_disk) str = g_strdup_printf ( @@ -743,6 +746,7 @@ build_multiple_docs_dialog (PlumaCloseConfirmationDialog *dlg) gtk_box_pack_start (GTK_BOX (vbox2), select_label, FALSE, FALSE, 0); gtk_label_set_line_wrap (GTK_LABEL (select_label), TRUE); + gtk_label_set_max_width_chars (GTK_LABEL (select_label), 72); #if GTK_CHECK_VERSION (3, 16, 0) gtk_label_set_xalign (GTK_LABEL (select_label), 0.0); #else @@ -775,6 +779,7 @@ build_multiple_docs_dialog (PlumaCloseConfirmationDialog *dlg) gtk_misc_set_alignment (GTK_MISC (secondary_label), 0.0, 0.5); #endif gtk_label_set_selectable (GTK_LABEL (secondary_label), TRUE); + gtk_label_set_max_width_chars (GTK_LABEL (secondary_label), 72); gtk_label_set_mnemonic_widget (GTK_LABEL (select_label), treeview); -- cgit v1.2.1