summaryrefslogtreecommitdiffstats
path: root/browser/src/map/handler/Map.Keyboard.js
diff options
context:
space:
mode:
authorBayram Çiçek <bayram.cicek@collabora.com>2024-01-08 14:40:14 +0300
committerpedropintosilva <65948705+pedropintosilva@users.noreply.github.com>2024-01-10 23:54:45 +0100
commitfc51f7d0ddabd5dfebb6b7a217abf0efa24a8348 (patch)
tree9ad653a414eb0447e2f480ee6a85c448c7a9023f /browser/src/map/handler/Map.Keyboard.js
parentAdd missing present in window icon (diff)
downloadonline-fc51f7d0ddabd5dfebb6b7a217abf0efa24a8348.tar.gz
online-fc51f7d0ddabd5dfebb6b7a217abf0efa24a8348.zip
Calc: swap Ctrl+Alt+PageUp / PageDown behavior
If there are multiple sheets, you can switch between them with Ctrl+Alt+PageUp/PageDown. this shortcut has been updated as: - Ctrl+Alt+PageUp -> go to the previous tab - Ctrl+Alt+PageDown -> go to the next tab Signed-off-by: Bayram Çiçek <bayram.cicek@collabora.com> Change-Id: Ic88adbe6cdd629b002810770bc19dc7af35d4499
Diffstat (limited to 'browser/src/map/handler/Map.Keyboard.js')
-rw-r--r--browser/src/map/handler/Map.Keyboard.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/browser/src/map/handler/Map.Keyboard.js b/browser/src/map/handler/Map.Keyboard.js
index b6194639b4..bae7fdf6c3 100644
--- a/browser/src/map/handler/Map.Keyboard.js
+++ b/browser/src/map/handler/Map.Keyboard.js
@@ -903,7 +903,7 @@ L.Map.Keyboard = L.Handler.extend({
var partToSelect = 0;
this._map._docLayer._clearReferences();
- if (e.keyCode === this.keyCodes.pageUp) {
+ if (e.keyCode === this.keyCodes.pageDown) {
partToSelect = currentSelectedPart != parts - 1 ? currentSelectedPart + 1 : 0;
}
else {