Changeset - r13535:b7c08a0a0c2e
[Not reviewed]
master
0 2 0
alberth - 15 years ago 2009-11-14 08:44:12
alberth@openttd.org
(svn r18067) -Codechange: Eliminate a constant representing a widget top edge in vehicle windows.
2 files changed with 1 insertions and 2 deletions:
0 comments (0 inline, 0 general)
src/vehicle_gui.cpp
Show inline comments
 
@@ -1030,7 +1030,7 @@ public:
 
				return;
 

	
 
			case VLW_WIDGET_LIST: { // Matrix to show vehicles
 
				uint32 id_v = (pt.y - PLY_WND_PRC__OFFSET_TOP_WIDGET) / this->resize.step_height;
 
				uint32 id_v = (pt.y - this->GetWidget<NWidgetBase>(VLW_WIDGET_LIST)->pos_y) / this->resize.step_height;
 
				const Vehicle *v;
 

	
 
				if (id_v >= this->vscroll.GetCapacity()) return; // click out of bounds
src/vehicle_gui_base.h
Show inline comments
 
@@ -16,7 +16,6 @@
 

	
 
/** Start of functions regarding vehicle list windows */
 
enum {
 
	PLY_WND_PRC__OFFSET_TOP_WIDGET = 26,
 
	PLY_WND_PRC__SIZE_OF_ROW_TINY  = 13,  ///< Height of rows in group list
 
	PLY_WND_PRC__SIZE_OF_ROW_SMALL = 26,  ///< Height of rows in train/roadvehicle list
 
	PLY_WND_PRC__SIZE_OF_ROW_BIG   = 39,  ///< Height of rows in ship/aircraft list
0 comments (0 inline, 0 general)