From b45a2d7335e016bc5081d25b6e1a695f558072ff Mon Sep 17 00:00:00 2001 From: Giovanni Campagna Date: Thu, 14 Feb 2013 17:13:13 +0100 Subject: [PATCH] ScreenShield: don't add the source actor directly to the boxlayout StBoxLayout always fills on the orthogonal direction, so the icon becomes distorted as the layout grows to accomodate more details. Instead, use a bin that aligns at the start. https://bugzilla.gnome.org/show_bug.cgi?id=693822 --- js/ui/screenShield.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/js/ui/screenShield.js b/js/ui/screenShield.js index 0329381ae..7e693be2c 100644 --- a/js/ui/screenShield.js +++ b/js/ui/screenShield.js @@ -204,7 +204,10 @@ const NotificationsBox = new Lang.Class({ _makeNotificationDetailedSource: function(source, box) { let sourceActor = new MessageTray.SourceActor(source, SUMMARY_ICON_SIZE); - box.add(sourceActor.actor, { y_fill: true }); + let sourceBin = new St.Bin({ y_align: St.Align.START, + x_align: St.Align.START, + child: sourceActor.actor }); + box.add(sourceBin); let textBox = new St.BoxLayout({ vertical: true }); box.add(textBox, { y_fill: false, y_align: St.Align.START });