Comment 4 for bug 1205839

Revision history for this message
Sid Penstone (penstone) wrote :

I think I found what may be the bug in the code for Menu.exe:
In Mainform.cs, in the method:
void ShowDetail(string title, string[] lines)
---The loop starting at line 728:
                while (indexChunk > 0.001f || size > summaryControl.Height)
{
...
}
never exits.
The string being processed is:
"Soooo, you're the new guy. Welcome aboard. This is your first run from San Luis Obispo down to LA, right?\n\n"+

The value of 'size' returned by MeasureText() is stuck at 78.

Sid P.