Hello Martin.

I have the bandit.

He was hidden in msegui.pas, inside function twidget.aligny().

At line 8275 --->

   wam_center: begin
     result:= frootpos.y + framepos.y + framesize.cy div 2;
    end;

I change it with this:

   wam_center: begin
     if awidget.framesize.cy >= awidget.height then
     result:= frootpos.y + framepos.y + framesize.cy div 2 else
     result:= frootpos.y + framepos.y + awidget.height div 2;
    end;

Now, after recompiling mseide and loading last noisegen + show main.pas as form 
--> perfect, no crash.
And compile+run works like charm. ;-)

PS: Maybe (surely) you have a better correction for the bandit, but for my 
system, all is ok now.

Fre;D

------------------------------------------------------------------------------
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
_______________________________________________
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk

Reply via email to