From 1e005bfb12cdd0bb03ea072427bfda9c421cf184 Mon Sep 17 00:00:00 2001 From: Michael Natterer Date: Thu, 29 Jul 2004 16:45:39 +0000 Subject: [PATCH] changed default configuration of the keyboard controller: scroll the 2004-07-29 Michael Natterer * etc/controllerrc: changed default configuration of the keyboard controller: scroll the display one step on cursor_key, scroll by one page on +cursor_key and scroll to top/bottom/left/right on +cursor_key. Fixes bug #53988. Moved the old opacity-modifying actions to +cursor_key. --- ChangeLog | 9 +++++++++ etc/controllerrc | 20 ++++++++++++++++---- 2 files changed, 25 insertions(+), 4 deletions(-) diff --git a/ChangeLog b/ChangeLog index f43af72a94..a55770995b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,12 @@ +2004-07-29 Michael Natterer + + * etc/controllerrc: changed default configuration of the keyboard + controller: scroll the display one step on cursor_key, scroll by + one page on +cursor_key and scroll to top/bottom/left/right + on +cursor_key. Fixes bug #53988. + + Moved the old opacity-modifying actions to +cursor_key. + 2004-07-29 Michael Natterer Replaced the concept of having a boolean indicating if an undo diff --git a/etc/controllerrc b/etc/controllerrc index 78dfc38a2c..4ff76e5353 100644 --- a/etc/controllerrc +++ b/etc/controllerrc @@ -19,10 +19,22 @@ (enabled yes) (controller "GimpControllerKeyboard") (mapping - (map "key-up" "context-opacity-increase-skip") - (map "key-down" "context-opacity-decrease-skip") - (map "key-left" "context-opacity-decrease") - (map "key-right" "context-opacity-increase"))) + (map "key-up" "view-scroll-up") + (map "key-down" "view-scroll-down") + (map "key-left" "view-scroll-left") + (map "key-right" "view-scroll-right") + (map "key-up-shift" "view-scroll-page-up") + (map "key-down-shift" "view-scroll-page-down") + (map "key-left-shift" "view-scroll-page-left") + (map "key-right-shift" "view-scroll-page-right") + (map "key-up-control" "view-scroll-top-border") + (map "key-down-control" "view-scroll-bottom-border") + (map "key-left-control" "view-scroll-left-border") + (map "key-right-control" "view-scroll-right-border") + (map "key-up-alt" "context-opacity-increase-skip") + (map "key-down-alt" "context-opacity-decrease-skip") + (map "key-left-alt" "context-opacity-decrease") + (map "key-right-alt" "context-opacity-increase"))) # (GimpControllerInfo "LinuxInput" # (enabled yes)