I got a problem using Lotus Ntes where the characters just aren't printed. ( I think it's bug 428)
I tried to fix that and found in dlls/user/painting.c
if (!hrgnUpdate) /* empty region, clip everything */ { hrgnUpdate = CreateRectRgn( 0, 0, 0, 0 ); }
The easiest way for me to get my Notes up again was by changing this to my default-window size e.g.
if (!hrgnUpdate) /* empty region, clip everything */ { hrgnUpdate = CreateRectRgn( 0, 0, 700, 700 ); }
which is ok for me.
So my question is, what is the "right way" to get the redraw working again ?
Greets
Martin