app-display: Enable swipe-scrolling in the app view
With general support for swipe-scrolling in the overview, there is no reason to limit the behavior to workspaces. It is equally useful for scrolling through the grid of available applications, so enable swipe-scrolling for the app view. https://bugzilla.gnome.org/show_bug.cgi?id=635034
This commit is contained in:
parent
d64d491f63
commit
e96a90b161
@ -43,6 +43,15 @@ AlphabeticalView.prototype = {
|
||||
vfade: true });
|
||||
this.actor.add_actor(box);
|
||||
this.actor.set_policy(Gtk.PolicyType.NEVER, Gtk.PolicyType.AUTOMATIC);
|
||||
this.actor.connect('notify::mapped', Lang.bind(this,
|
||||
function() {
|
||||
if (!this.actor.mapped)
|
||||
return;
|
||||
|
||||
let adjustment = this.actor.vscroll.adjustment;
|
||||
let direction = Overview.SwipeScrollDirection.VERTICAL;
|
||||
Main.overview.setScrollAdjustment(adjustment, direction);
|
||||
}));
|
||||
},
|
||||
|
||||
_removeAll: function() {
|
||||
|
Loading…
Reference in New Issue
Block a user