From: peter@transvirtual.com
Date: Fri Dec 11 1998 - 09:30:19 EST
>I just ran it over an 28.8k modem line. Doing that, I noticed that the
>first screen takes 3 or 4 full repaints (each takes several seconds,
>that's how I noticed.) Plus, the "do you want to create the directory
>dialog" was shifted to the top, so parts of it were obscured by the window
>decoration.
The repaints are probably due to imageComplete notifications (the old async
image production theme..). Are there images in there? You can mitigate this by
switching off the default background blanking in PaintEvt.dispatch() (its just
too fast, and therefore creates flicker) like this:
..
NativeGraphics g = NativeGraphics.getClippedGraphics( ..,
(src.parent != null));
..
However, the wrong offsets for graphics output are a different thing. Chances
are good that it's done wrong in the app (without counting in the insets). How
does it look under JDK? If it doesn't appear there, this might be due to the
fact that their menubar is bigger (and completely hides the output)
-- Peter
This archive was generated by hypermail 2b29 : Sat Sep 23 2000 - 19:57:12 EDT