Skip to content

Fix PgUp/PgDown handling in overview

Florian Müllner requested to merge fmuellner/gnome-shell:page-up-n-down into master

The keys are supposed to be usable for switching between workspace and app pages, but both are broken right now:

  1. which ones gets to handle the event is based on the mapped state, but nowadays both are always mapped (workspaces win)

  2. the handling for workspaces still tries to switch workspaces vertically, which obviously doesn't do anything anymore

This fixes both, but in a slightly questionable way as it relies on workspaces getting first dips (the alternative is to give the app grid access to the overview state, which is a bit more intrusive).

Merge request reports