Index: client/cl_menu.c =================================================================== --- client/cl_menu.c (revision 5512) +++ client/cl_menu.c (working copy) @@ -1143,10 +1143,12 @@ Com_DPrintf("Node '%s' could not be found\n", nodeName); return; } - - Com_DPrintf("Scroll %i lines\n", node->textLines - node->height); + if (node->textLines > node->height) - MN_TextScroll(node, node->textLines - node->height); + { + Com_DPrintf("Scrolling to line %i", node->textLines - node->height + 1); + node->textScroll = node->textLines - node->height + 1; + } } /**