appDisplay: Home and End keys for app grid navigation

Include Home and End keys for consistent behaviour with respect to
overview navigation.

Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/2241>
This commit is contained in:
Anupam Kumar 2022-03-13 08:18:11 +00:00 committed by Marge Bot
parent 034e59af2d
commit db68749335

View File

@ -1669,6 +1669,12 @@ class AppDisplay extends BaseAppView {
} else if (event.get_key_symbol() === Clutter.KEY_Page_Down) {
this.goToPage(this._grid.currentPage + 1);
return Clutter.EVENT_STOP;
} else if (event.get_key_symbol() === Clutter.KEY_Home) {
this.goToPage(0);
return Clutter.EVENT_STOP;
} else if (event.get_key_symbol() === Clutter.KEY_End) {
this.goToPage(this._grid.nPages - 1);
return Clutter.EVENT_STOP;
}
return Clutter.EVENT_PROPAGATE;