From 852cefb6fcb5ca8bbaf8bd0073c20872616d3e2f Mon Sep 17 00:00:00 2001 From: Georges Basile Stavracas Neto Date: Fri, 29 Nov 2019 16:05:45 -0300 Subject: [PATCH] unlockDialog: Make notification labels vertical https://gitlab.gnome.org/GNOME/gnome-shell/merge_requests/872 --- js/ui/unlockDialog.js | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/js/ui/unlockDialog.js b/js/ui/unlockDialog.js index 8f434d2fb..688d1772f 100644 --- a/js/ui/unlockDialog.js +++ b/js/ui/unlockDialog.js @@ -75,11 +75,19 @@ var NotificationsBox = GObject.registerClass({ let sourceActor = new MessageTray.SourceActor(source, SUMMARY_ICON_SIZE); box.add_child(sourceActor); - let textBox = new St.BoxLayout({ vertical: true }); + let textBox = new St.BoxLayout({ + x_expand: true, + y_expand: true, + y_align: Clutter.ActorAlign.CENTER, + }); box.add_child(textBox); - let title = new St.Label({ text: source.title, - style_class: 'unlock-dialog-notification-label' }); + let title = new St.Label({ + text: source.title, + style_class: 'unlock-dialog-notification-label', + x_expand: true, + x_align: Clutter.ActorAlign.START, + }); textBox.add(title); let count = source.unseenCount;