I think it probably partially works, just not in my case. It's not that the patch is wrong, it just doesn't apply in my related case.
Apologies if it wasn't clear. My understanding has evolved as I looked at this over the last few days.
When I look at the diff of 20381>20382, it looks like it
should set the div to overflow:visible, but isn't getting called in all cases. In my case, I'm not seeing a faaaaaaart comment in the source, so the index will be -1 and the code isn't changing the div.
Code:
// Modify the 'overflow' div, after the 'content_' div, to prevent the appearance of an inner scroll bar due to use link decorations
int content_Index = buffer.indexOf( "id='content_'" );
int overflowIndex = buffer.indexOf( "<div style='overflow: auto'><center><!--faaaaaaart-->", content_Index );
if ( overflowIndex != -1 )
{
// Replace 'auto' into 'visible'
overflowIndex += 22;
buffer.replace( overflowIndex, overflowIndex + 4, "visible" );
}