From 668968990c47681bbd06ec9c0843891b21fe9334 Mon Sep 17 00:00:00 2001 From: Alexey Andreyev Date: Tue, 9 Feb 2021 12:40:08 +0300 Subject: [PATCH] Fancy effects: remove excess console debug output --- imports/NeoChat/Component/ChatTextInput.qml | 1 - imports/NeoChat/Page/RoomPage.qml | 1 - 2 files changed, 2 deletions(-) diff --git a/imports/NeoChat/Component/ChatTextInput.qml b/imports/NeoChat/Component/ChatTextInput.qml index 536ff8b10..4544d8e6f 100644 --- a/imports/NeoChat/Component/ChatTextInput.qml +++ b/imports/NeoChat/Component/ChatTextInput.qml @@ -482,7 +482,6 @@ ToolBar { } var inputFieldText = inputField.text.trim() - console.log(inputFieldText) if (inputFieldText.includes('\u{2744}')) { root.fancyEffectsReasonFound("snowflake") } diff --git a/imports/NeoChat/Page/RoomPage.qml b/imports/NeoChat/Page/RoomPage.qml index 9874518ca..f462553aa 100644 --- a/imports/NeoChat/Page/RoomPage.qml +++ b/imports/NeoChat/Page/RoomPage.qml @@ -601,7 +601,6 @@ Kirigami.ScrollablePage { enabled: Config.showFancyEffects function processFancyEffectsReason(fancyEffect) { - console.log("onFancyEffectsReasonFound", fancyEffect) if (fancyEffect === "snowflake") { fancyEffectsContainer.showSnowEffect() }