From 12127c0acdcdf7182729c8e1231feb48910d5404 Mon Sep 17 00:00:00 2001 From: Dominik Geyer Date: Sun, 2 Nov 2008 20:52:07 +0000 Subject: [PATCH] editor: use CTRL-key instead of ALT-key to move world/view; ticket #551 --- src/game/editor/ed_editor.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/game/editor/ed_editor.cpp b/src/game/editor/ed_editor.cpp index c32922174..79ffbf115 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;