# HG changeset patch # User alberth # Date 1261480927 0 # Node ID e72e69fcf01beb85a5390187304b09ec7219d128 # Parent 1422b26b44ac8a606e303b40f2d39c3f592ce2d5 (svn r18601) -Codechange: Use resize step of the order list panel widget for order line calculations. diff --git a/src/order_gui.cpp b/src/order_gui.cpp --- a/src/order_gui.cpp +++ b/src/order_gui.cpp @@ -491,7 +491,8 @@ */ int GetOrderFromPt(int y) { - int sel = (y - this->GetWidget(ORDER_WIDGET_ORDER_LIST)->pos_y - WD_FRAMERECT_TOP) / this->resize.step_height; // Selected line in the ORDER_WIDGET_ORDER_LIST panel. + NWidgetBase *nwid = this->GetWidget(ORDER_WIDGET_ORDER_LIST); + int sel = (y - nwid->pos_y - WD_FRAMERECT_TOP) / nwid->resize_y; // Selected line in the ORDER_WIDGET_ORDER_LIST panel. if ((uint)sel >= this->vscroll.GetCapacity()) return INVALID_ORDER; @@ -943,6 +944,7 @@ int middle = rtl ? r.right - WD_FRAMETEXT_RIGHT - index_column_width : r.left + WD_FRAMETEXT_LEFT + index_column_width; int y = r.top + WD_FRAMERECT_TOP; + int line_height = this->GetWidget(ORDER_WIDGET_ORDER_LIST)->resize_y; int i = this->vscroll.GetPosition(); const Order *order = this->vehicle->GetOrder(i); @@ -952,7 +954,7 @@ if (!this->vscroll.IsVisible(i)) break; DrawOrderString(this->vehicle, order, i, y, i == this->selected_order, false, r.left + WD_FRAMETEXT_LEFT, middle, r.right - WD_FRAMETEXT_RIGHT); - y += this->resize.step_height; + y += line_height; i++; order = order->next;