# HG changeset patch # User rubidium # Date 1213297590 0 # Node ID 4b627487aac9ad698cecd0668f22d1931061dce9 # Parent 70af9616e03c2e03d365c1e23dab592912ca25d2 (svn r13495) -Fix: scrolling the main map with the keys speed was influenced by movement of the mouse. diff -r 70af9616e03c -r 4b627487aac9 src/window.cpp --- a/src/window.cpp Thu Jun 12 18:51:35 2008 +0000 +++ b/src/window.cpp Thu Jun 12 19:06:30 2008 +0000 @@ -1809,7 +1809,6 @@ DecreaseWindowCounters(); HandlePlacePresize(); UpdateTileSelection(); - HandleKeyScrolling(); if (!VpHandlePlaceSizingDrag()) return; if (!HandleDragDrop()) return; @@ -1949,6 +1948,7 @@ */ void InputLoop() { + HandleKeyScrolling(); HandleMouseEvents(); HandleAutoscroll(); }