Zitat von faber <[email protected]>:

Please update to svn 25401 and compile with -dVerboseShowing (in the
configure build lazarus dialog, advanced, Options).

Unfortunately I don't get any more debug with this option.

It should write a lot of output.
Are you sure, you are using the right LCL ppus?
Do you have local modifications, so that the svn update was incomplete? Search for IFDEF VerboseShowing in lcl/include/wincontrol.inc.
Do you see any debugln output?


I changed the order (first hide the current grid then show other) and
it doesn't hide first, so the problem is not only with showing grid.
But I think I found workaround for this problem

before:
SG1.Visible:=true;
SG2.Visible:=false;

after:
SG2.Visible:=false;
Application.ProcessMessage;
SG1.Visible:=true;

I do not know how good is this solution. I'm going testing.

If this works, maybe it is an invalidate/painting problem in the win32 interface.

Mattias




--
_______________________________________________
Lazarus mailing list
[email protected]
http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus

Reply via email to