diff options
author | rubidium <rubidium@openttd.org> | 2009-01-09 23:28:28 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2009-01-09 23:28:28 +0000 |
commit | 48c97558f7849a910ec718ccdf3566060f0baf8a (patch) | |
tree | 869a86427f29bccccb486ca8e6d56f573f97f7a9 /src | |
parent | e13dc4d99dbb7e766e5d5bed968c14ce24544210 (diff) | |
download | openttd-48c97558f7849a910ec718ccdf3566060f0baf8a.tar.xz |
(svn r14946) -Fix: copying a location from the extra viewport to the main viewport did not cancel vehicle following
Diffstat (limited to 'src')
-rw-r--r-- | src/smallmap_gui.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/smallmap_gui.cpp b/src/smallmap_gui.cpp index 324a213d4..01afe7fe4 100644 --- a/src/smallmap_gui.cpp +++ b/src/smallmap_gui.cpp @@ -1159,6 +1159,7 @@ public: /* set this view to same location. Based on the center, adjusting for zoom */ w->viewport->dest_scrollpos_x = x - (w->viewport->virtual_width - this->viewport->virtual_width) / 2; w->viewport->dest_scrollpos_y = y - (w->viewport->virtual_height - this->viewport->virtual_height) / 2; + w->viewport->follow_vehicle = INVALID_VEHICLE; } break; case EVW_VIEW_TO_MAIN: { // inverse location button (move this view to same spot as main view) 'Copy Location' |