(svn r13495) -Fix: scrolling the main map with the keys speed was influenced by movement of the mouse.
authorrubidium
Thu, 12 Jun 2008 19:06:30 +0000
changeset 10941 4b627487aac9
parent 10940 70af9616e03c
child 10945 b53a857888b8
(svn r13495) -Fix: scrolling the main map with the keys speed was influenced by movement of the mouse.
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();
 }