appDisplay: Fix return value for _onScroll

ClutterActor::scroll-event has a boolean return value to indicate
whether the event has been handled, or event emission should continue.
Now that we are using an StScrollView, we depend on this to avoid
propagating the event to the view's own handler.

https://bugzilla.gnome.org/show_bug.cgi?id=707409
This commit is contained in:
Florian Müllner 2013-09-04 13:54:53 +02:00
parent 36bee16781
commit 2980515c85

View File

@ -401,8 +401,8 @@ const AllView = new Lang.Class({
},
_onScroll: function(actor, event) {
if(this._displayingPopup)
return;
if (this._displayingPopup)
return true;
let direction = event.get_scroll_direction();
if (direction == Clutter.ScrollDirection.UP) {
if (this._currentPage > 0)
@ -413,6 +413,7 @@ const AllView = new Lang.Class({
this.goToPage(this._currentPage + 1);
}
}
return true;
},
_onPan: function(action) {