Merge pull request #15439 from poke1024/fix-debug-break

Fixes debugger randomly not pausing
This commit is contained in:
Rémi Verschelde 2018-01-07 14:26:52 +01:00 committed by GitHub
commit a2fe9faa64
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1166,6 +1166,7 @@ void ScriptEditorDebugger::start() {
}
set_process(true);
breaked = false;
}
void ScriptEditorDebugger::pause() {
@ -1177,6 +1178,7 @@ void ScriptEditorDebugger::unpause() {
void ScriptEditorDebugger::stop() {
set_process(false);
breaked = false;
server->stop();