From dc2cae07b293c5dc98ec8fb6ff242b903d631ee7 Mon Sep 17 00:00:00 2001 From: Adel Gadllah Date: Wed, 9 Mar 2011 14:00:25 +0100 Subject: [PATCH] notification: Remove scrollTo hack Remove the hack from Notification.scrollTo because it is unreliable, the caller should make sure to call scrollTo when it will actually have the desired effect. https://bugzilla.gnome.org/show_bug.cgi?id=614977 --- js/ui/messageTray.js | 5 ----- 1 file changed, 5 deletions(-) diff --git a/js/ui/messageTray.js b/js/ui/messageTray.js index c9c977aaf..39b90f860 100644 --- a/js/ui/messageTray.js +++ b/js/ui/messageTray.js @@ -571,11 +571,6 @@ Notification.prototype = { // // Scrolls the content area (if scrollable) to the indicated edge scrollTo: function(side) { - // Hack to force a relayout, since the caller probably - // just added or removed something to scrollArea, and - // the adjustment needs to reflect that. - global.stage.get_actor_at_pos(Clutter.PickMode.REACTIVE, 0, 0); - let adjustment = this._scrollArea.vscroll.adjustment; if (side == St.Side.TOP) adjustment.value = adjustment.lower;