File diff r9142:8eefd8081b0a → r9143:e484ce861c88
src/signs_gui.cpp
Show inline comments
 
@@ -132,13 +132,13 @@ static const WindowDesc _sign_list_desc 
 
	SignListWndProc
 
};
 

	
 

	
 
void ShowSignList()
 
{
 
	Window *w = AllocateWindowDescFront(&_sign_list_desc, 0);
 
	Window *w = AllocateWindowDescFront<Window>(&_sign_list_desc, 0);
 
	if (w != NULL) {
 
		w->vscroll.cap = 12;
 
		w->resize.step_height = 10;
 
		w->resize.height = w->height - 10 * 7; // minimum if 5 in the list
 
	}
 
}