diff options
| author | Dominik Geyer <dominik.geyer@gmx.de> | 2008-11-02 20:52:07 +0000 |
|---|---|---|
| committer | Dominik Geyer <dominik.geyer@gmx.de> | 2008-11-02 20:52:07 +0000 |
| commit | 12127c0acdcdf7182729c8e1231feb48910d5404 (patch) | |
| tree | 953059061819ad2b00d0e88592b4ae2b793e6dc2 | |
| parent | a15c6946cd0bd0d7a7c86096aa576fe4897789d5 (diff) | |
| download | zcatch-12127c0acdcdf7182729c8e1231feb48910d5404.tar.gz zcatch-12127c0acdcdf7182729c8e1231feb48910d5404.zip | |
editor: use CTRL-key instead of ALT-key to move world/view; ticket #551
| -rw-r--r-- | src/game/editor/ed_editor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/editor/ed_editor.cpp b/src/game/editor/ed_editor.cpp index c3292217..79ffbf11 100644 --- a/src/game/editor/ed_editor.cpp +++ b/src/game/editor/ed_editor.cpp @@ -1153,7 +1153,7 @@ static void do_map_editor(RECT view, RECT toolbar) start_mx = mx; start_my = my; - if(inp_key_pressed(KEY_LALT)) + if(inp_key_pressed(KEY_LCTRL) || inp_key_pressed(KEY_RCTRL)) { if(inp_key_pressed(KEY_LSHIFT)) operation = OP_PAN_EDITOR; |