mirror of https://github.com/GNOME/gimp.git
changed default configuration of the keyboard controller: scroll the
2004-07-29 Michael Natterer <mitch@gimp.org> * etc/controllerrc: changed default configuration of the keyboard controller: scroll the display one step on cursor_key, scroll by one page on <shift>+cursor_key and scroll to top/bottom/left/right on <control>+cursor_key. Fixes bug #53988. Moved the old opacity-modifying actions to <alt>+cursor_key.
This commit is contained in:
parent
4b582b481a
commit
1e005bfb12
|
@ -1,3 +1,12 @@
|
||||||
|
2004-07-29 Michael Natterer <mitch@gimp.org>
|
||||||
|
|
||||||
|
* etc/controllerrc: changed default configuration of the keyboard
|
||||||
|
controller: scroll the display one step on cursor_key, scroll by
|
||||||
|
one page on <shift>+cursor_key and scroll to top/bottom/left/right
|
||||||
|
on <control>+cursor_key. Fixes bug #53988.
|
||||||
|
|
||||||
|
Moved the old opacity-modifying actions to <alt>+cursor_key.
|
||||||
|
|
||||||
2004-07-29 Michael Natterer <mitch@gimp.org>
|
2004-07-29 Michael Natterer <mitch@gimp.org>
|
||||||
|
|
||||||
Replaced the concept of having a boolean indicating if an undo
|
Replaced the concept of having a boolean indicating if an undo
|
||||||
|
|
|
@ -19,10 +19,22 @@
|
||||||
(enabled yes)
|
(enabled yes)
|
||||||
(controller "GimpControllerKeyboard")
|
(controller "GimpControllerKeyboard")
|
||||||
(mapping
|
(mapping
|
||||||
(map "key-up" "context-opacity-increase-skip")
|
(map "key-up" "view-scroll-up")
|
||||||
(map "key-down" "context-opacity-decrease-skip")
|
(map "key-down" "view-scroll-down")
|
||||||
(map "key-left" "context-opacity-decrease")
|
(map "key-left" "view-scroll-left")
|
||||||
(map "key-right" "context-opacity-increase")))
|
(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"
|
# (GimpControllerInfo "LinuxInput"
|
||||||
# (enabled yes)
|
# (enabled yes)
|
||||||
|
|
Loading…
Reference in New Issue