From b6609c54358a445e8e124dcf663659b0e5ab7379 Mon Sep 17 00:00:00 2001 From: miruka Date: Wed, 30 Oct 2019 09:26:02 -0400 Subject: [PATCH] DebugConsole: remove debug print --- src/qml/DebugConsole.qml | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/qml/DebugConsole.qml b/src/qml/DebugConsole.qml index 09762640..0ab8386c 100644 --- a/src/qml/DebugConsole.qml +++ b/src/qml/DebugConsole.qml @@ -31,8 +31,6 @@ Window { visible = true } - property var pr: historyEntry - onPrChanged: print("pr changed:", pr) onHistoryEntryChanged: inputField.text = historyEntry === -1 ? "" : history.slice(-historyEntry - 1)[0]