Merge pull request #116823 from mihe/no-local-error-breaks
Add support for `--ignore-error-breaks` to `LocalDebugger`
This commit is contained in:
commit
f9f441270a
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