From c8f7f569a75b853211beae475f79ee8db8f5889f Mon Sep 17 00:00:00 2001 From: John Gibbon Date: Mon, 23 Nov 2020 00:38:45 +0100 Subject: [PATCH] Another debug signal handler fix --- qml/js/debug.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qml/js/debug.js b/qml/js/debug.js index bcdd374..011ccff 100644 --- a/qml/js/debug.js +++ b/qml/js/debug.js @@ -31,7 +31,7 @@ var exception = enabled ? console.exception : function(){}; Fernschreiber.DebugLog.enabledChanged.connect(function() { enabled = Fernschreiber.DebugLog.enabled; - if(isEnabled) { + if(enabled) { log = console.log; assert = console.assert; time = console.time;