1
Plugins development / Re: LLDB debugger low level interface investigation results
« Last post by Pecan on Yesterday at 10:50:27 pm »...where I commented the OnIdle(..) from the GDB/MI as I thought the code was not needed, but the "event.Skip();" was as it causes compilation issues. Go figure!!!!
That's caught me a couple of times also.
wxWidgets ends processing any event if there is no Skip() called. Events are pass on to other users only when a call to Skip() is done.
It's especially important to issue a call to Skip() from within an OnIdle() event. Else plugins (etal) will never receive their OnIdle event hooked onto async I/O etc.