unlockDialog: Make notification labels vertical
https://gitlab.gnome.org/GNOME/gnome-shell/merge_requests/872
This commit is contained in:
parent
cfce9550a4
commit
852cefb6fc
@ -75,11 +75,19 @@ var NotificationsBox = GObject.registerClass({
|
|||||||
let sourceActor = new MessageTray.SourceActor(source, SUMMARY_ICON_SIZE);
|
let sourceActor = new MessageTray.SourceActor(source, SUMMARY_ICON_SIZE);
|
||||||
box.add_child(sourceActor);
|
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);
|
box.add_child(textBox);
|
||||||
|
|
||||||
let title = new St.Label({ text: source.title,
|
let title = new St.Label({
|
||||||
style_class: 'unlock-dialog-notification-label' });
|
text: source.title,
|
||||||
|
style_class: 'unlock-dialog-notification-label',
|
||||||
|
x_expand: true,
|
||||||
|
x_align: Clutter.ActorAlign.START,
|
||||||
|
});
|
||||||
textBox.add(title);
|
textBox.add(title);
|
||||||
|
|
||||||
let count = source.unseenCount;
|
let count = source.unseenCount;
|
||||||
|
Loading…
Reference in New Issue
Block a user