Komodo IDE breakpoint not working when set at runtime

Hello, I’m trying to set a breakpoint from Komodo IDE when my python 2.7 application is running, but the execution doesn’t stop on it. But if I set the breakpoint before starting my application, the debugger will stop on this breakpoint. Is it possible to set a breakpoint at runtime? Thank you.

Unfortunately it is not possible to set breakpoints during execution. I’m not sure if this would be possible to implement, @toddw to weigh in?

The application needs to be in a paused (like when you hit a breakpoint) or stopped state in order to add/modify breakpoints.

Ok, breakpoint can be set when application is in pause. Thank you very much!