[gnome-shell] accessDialog: Allow body label to wrap lines



commit 19f11ae3289e5e3279cefb1cd2c144f6bd05787a
Author: Georges Basile Stavracas Neto <georges stavracas gmail com>
Date:   Tue Jul 12 13:37:56 2022 -0300

    accessDialog: Allow body label to wrap lines
    
    Allow the body label of the access dialog to wrap, and avoid
    ellipsizing it.
    
    Fixes https://gitlab.gnome.org/GNOME/gnome-shell/-/issues/5286
    
    Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/2377>

 js/ui/accessDialog.js | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)
---
diff --git a/js/ui/accessDialog.js b/js/ui/accessDialog.js
index 393315d458..a162d65016 100644
--- a/js/ui/accessDialog.js
+++ b/js/ui/accessDialog.js
@@ -1,5 +1,5 @@
 /* exported AccessDialogDBus */
-const { Clutter, Gio, GLib, GObject, Shell, St } = imports.gi;
+const { Clutter, Gio, GLib, GObject, Pango, Shell, St } = imports.gi;
 
 const CheckBox = imports.ui.checkBox;
 const Dialog = imports.ui.dialog;
@@ -62,6 +62,8 @@ class AccessDialog extends ModalDialog.ModalDialog {
             text: body,
             x_align: Clutter.ActorAlign.CENTER,
         });
+        bodyLabel.clutter_text.ellipsize = Pango.EllipsizeMode.NONE;
+        bodyLabel.clutter_text.line_wrap = true;
         content.add_child(bodyLabel);
 
         this.addButton({


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]