summaryrefslogtreecommitdiff
path: root/src/depot_gui.cpp
diff options
context:
space:
mode:
authorfrosch <frosch@openttd.org>2012-06-23 14:31:58 +0000
committerfrosch <frosch@openttd.org>2012-06-23 14:31:58 +0000
commit90b539818fc08e802b719fc9785e2eecf6bccfe9 (patch)
tree2cd1a49702ca20108d60438e5e2d1444cbe2b2c4 /src/depot_gui.cpp
parent526c4e8af05645970fe9e8e875ab6e8e6f622fc3 (diff)
downloadopenttd-90b539818fc08e802b719fc9785e2eecf6bccfe9.tar.xz
(svn r24351) -Fix: Short vehicles were not properly positioned at the cursor when dragging for RTL languages.
Diffstat (limited to 'src/depot_gui.cpp')
-rw-r--r--src/depot_gui.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/depot_gui.cpp b/src/depot_gui.cpp
index 4b040882e..290080fc9 100644
--- a/src/depot_gui.cpp
+++ b/src/depot_gui.cpp
@@ -480,13 +480,14 @@ struct DepotWindow : Window {
this->sel = INVALID_VEHICLE;
TrainDepotMoveVehicle(v, sel, gdvp.head);
} else if (v != NULL) {
- int image = v->GetImage(_current_text_dir == TD_RTL ? DIR_E : DIR_W, EIT_IN_DEPOT);
+ bool rtl = _current_text_dir == TD_RTL;
+ int image = v->GetImage(rtl ? DIR_E : DIR_W, EIT_IN_DEPOT);
SetObjectToPlaceWnd(image, GetVehiclePalette(v), HT_DRAG, this);
this->sel = v->index;
this->SetDirty();
- _cursor.short_vehicle_offset = v->IsGroundVehicle() ? 16 - v->GetGroundVehicleCache()->cached_veh_length * 2 : 0;
+ _cursor.short_vehicle_offset = v->IsGroundVehicle() ? (16 - v->GetGroundVehicleCache()->cached_veh_length * 2) * (rtl ? -1 : 1) : 0;
_cursor.vehchain = _ctrl_pressed;
}
break;