Fixes debugger randomly not pausing

This commit is contained in:
Bernhard Liebl 2018-01-07 13:00:15 +01:00
parent 29e68aa40e
commit 09dd70878e

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();