Trivial change to avoid crash on tool re-entry

See https://gitlab.com/kicad/code/kicad/-/issues/17164


(cherry picked from commit 299b548a41)
This commit is contained in:
Jon Evans 2024-02-27 19:31:09 -05:00
parent bbd4cfd3d4
commit 12dcdc8bbe
1 changed files with 1 additions and 1 deletions

View File

@ -704,7 +704,7 @@ TOOL_EVENT* TOOL_MANAGER::ScheduleWait( TOOL_BASE* aTool, const TOOL_EVENT_LIST&
{
TOOL_STATE* st = m_toolState[aTool];
wxASSERT( !st->pendingWait ); // everything collapses on two KiYield() in a row
wxCHECK( !st->pendingWait, nullptr ); // everything collapses on two KiYield() in a row
// indicate to the manager that we are going to sleep and we shall be
// woken up when an event matching aConditions arrive