(svn r20759) -Fix (r20753): it wasn't possible to build anything when left button scrolling was active

This commit is contained in:
smatz
2010-09-07 11:00:42 +00:00
parent 82949024f1
commit a282c3ab57
2 changed files with 4 additions and 3 deletions

View File

@@ -1811,7 +1811,10 @@ bool HandleViewportClicked(const ViewPort *vp, int x, int y)
if (v != NULL && VehicleClicked(v)) return true;
}
if (_thd.place_mode & HT_DRAG_MASK) return false;
if (_thd.place_mode & HT_DRAG_MASK) {
PlaceObject();
return true;
}
if (CheckClickOnTown(vp, x, y)) return true;
if (CheckClickOnStation(vp, x, y)) return true;