[gnome-shell] notification: Remove scrollTo hack



commit dc2cae07b293c5dc98ec8fb6ff242b903d631ee7
Author: Adel Gadllah <adel gadllah gmail com>
Date:   Wed Mar 9 14:00:25 2011 +0100

    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 files changed, 0 insertions(+), 5 deletions(-)
---
diff --git a/js/ui/messageTray.js b/js/ui/messageTray.js
index c9c977a..39b90f8 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;



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