diff options
author | peter1138 <peter1138@openttd.org> | 2014-10-18 16:12:48 +0000 |
---|---|---|
committer | peter1138 <peter1138@openttd.org> | 2014-10-18 16:12:48 +0000 |
commit | f5d964bdbd39974213694dd2f3b5b193d64e1b5d (patch) | |
tree | 09be1a97bbff5b496b8b5121238cb5bc5810d59e /src | |
parent | 3730ed67cbe4108ca1ba7033de80935afbd724e2 (diff) | |
download | openttd-f5d964bdbd39974213694dd2f3b5b193d64e1b5d.tar.xz |
(svn r27024) -Codechange: Adjust spacing on small order list.
Diffstat (limited to 'src')
-rw-r--r-- | src/vehicle_gui.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/vehicle_gui.cpp b/src/vehicle_gui.cpp index 3d6ad5188..d9cb116a1 100644 --- a/src/vehicle_gui.cpp +++ b/src/vehicle_gui.cpp @@ -1288,6 +1288,9 @@ static void DrawSmallOrderList(const Vehicle *v, int left, int right, int y, Veh const Order *order = v->GetOrder(start); if (order == NULL) return; + bool rtl = _current_text_dir == TD_RTL; + int l_offset = rtl ? 0 : UnScaleByZoom(4 * 6, ZOOM_LVL_GUI); + int r_offset = rtl ? UnScaleByZoom(4 * 6, ZOOM_LVL_GUI) : 0; int i = 0; VehicleOrderID oid = start; @@ -1296,7 +1299,7 @@ static void DrawSmallOrderList(const Vehicle *v, int left, int right, int y, Veh if (order->IsType(OT_GOTO_STATION)) { SetDParam(0, order->GetDestination()); - DrawString(left + 6, right - 6, y, STR_TINY_BLACK_STATION); + DrawString(left + l_offset, right - r_offset, y, STR_TINY_BLACK_STATION); y += FONT_HEIGHT_SMALL; if (++i == 4) break; |