Add support for --ignore-error-breaks to LocalDebugger
This commit is contained in:
parent
5cba18ff3b
commit
9d67b350d8
1 changed files with 4 additions and 0 deletions
|
|
@ -115,6 +115,10 @@ struct LocalDebugger::ScriptsProfiler {
|
|||
};
|
||||
|
||||
void LocalDebugger::debug(bool p_can_continue, bool p_is_error_breakpoint) {
|
||||
if (script_debugger->is_ignoring_error_breaks() && p_is_error_breakpoint) {
|
||||
return;
|
||||
}
|
||||
|
||||
ScriptLanguage *script_lang = script_debugger->get_break_language();
|
||||
|
||||
if (!target_function.is_empty()) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue