workspaceThumbnails: remove custom scrolling code

Now that we listen to scroll event on the whole overview group, this
makes the thumbnail switcher scroll twice per-event.
This commit is contained in:
Cosimo Cecchi 2013-02-25 18:23:42 -05:00
parent a361180745
commit 7d78c42dfc

View File

@ -551,7 +551,6 @@ const ThumbnailsBox = new Lang.Class({
this.actor.connect('button-press-event', function() { return true; });
this.actor.connect('button-release-event', Lang.bind(this, this._onButtonRelease));
this.actor.connect('scroll-event', Lang.bind(this, this._onScrollEvent));
Main.overview.connect('showing',
Lang.bind(this, this._createThumbnails));
@ -1215,16 +1214,5 @@ const ThumbnailsBox = new Lang.Class({
},
onCompleteScope: this
});
},
_onScrollEvent: function (actor, event) {
switch (event.get_scroll_direction()) {
case Clutter.ScrollDirection.UP:
Main.wm.actionMoveWorkspace(Meta.MotionDirection.UP);
break;
case Clutter.ScrollDirection.DOWN:
Main.wm.actionMoveWorkspace(Meta.MotionDirection.DOWN);
break;
}
}
});