Re: [Lazarus] Do I understand how OnIdle works?

2020-07-27 Thread Mattias Gaertner via lazarus
On Mon, 27 Jul 2020 12:05:45 +0200 frans via lazarus wrote: > Hi, > > I wonder about the use of OnIdle procedure and the Done variable. I > thougth that this routine keeps running over and over again in idle > state as long as Done=False. Correct. > But the value of Done doesn't make a >

[Lazarus] Do I understand how OnIdle works?

2020-07-27 Thread frans via lazarus
Hi, I wonder about the use of OnIdle procedure and the Done variable. I thougth that this routine keeps running over and over again in idle state as long as Done=False. But the value of Done doesn't make a difference, the OnIdle procedure  keeps repeating itself even when Done=True. Can