diff options
author | smatz <smatz@openttd.org> | 2010-12-24 13:13:28 +0000 |
---|---|---|
committer | smatz <smatz@openttd.org> | 2010-12-24 13:13:28 +0000 |
commit | 889c8d3022029a222601ae5e3dab032d8e455654 (patch) | |
tree | 5dcffa8da2d88046d21942372258ba311c911771 /src | |
parent | ff8b269dc92bfc368b7665e583afc89028f5b068 (diff) | |
download | openttd-889c8d3022029a222601ae5e3dab032d8e455654.tar.xz |
(svn r21616) -Change: do not highlight tile when selecting a vehicle to clone or an order to skip to
Diffstat (limited to 'src')
-rw-r--r-- | src/order_gui.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/order_gui.cpp b/src/order_gui.cpp index a3ed0ce06..ef5a2ebd7 100644 --- a/src/order_gui.cpp +++ b/src/order_gui.cpp @@ -586,7 +586,7 @@ private: { this->LowerWidget(ORDER_WIDGET_GOTO); this->SetWidgetDirty(ORDER_WIDGET_GOTO); - SetObjectToPlaceWnd(ANIMCURSOR_PICKSTATION, PAL_NONE, HT_RECT, this); + SetObjectToPlaceWnd(ANIMCURSOR_PICKSTATION, PAL_NONE, HT_NONE, this); this->goto_type = OPOS_CONDITIONAL; } @@ -598,7 +598,7 @@ private: { this->LowerWidget(ORDER_WIDGET_GOTO); this->SetWidgetDirty(ORDER_WIDGET_GOTO); - SetObjectToPlaceWnd(ANIMCURSOR_PICKSTATION, PAL_NONE, HT_RECT | HT_VEHICLE, this); + SetObjectToPlaceWnd(ANIMCURSOR_PICKSTATION, PAL_NONE, HT_VEHICLE, this); this->goto_type = OPOS_SHARE; } |