From de61b46ccb804adab0baf8e8123fe391cd1837a5 Mon Sep 17 00:00:00 2001 From: end-4 <97237370+end-4@users.noreply.github.com> Date: Fri, 9 May 2025 18:22:49 +0200 Subject: [PATCH] remove debug print --- .config/quickshell/modules/overview/SearchWidget.qml | 1 - .../quickshell/modules/sidebarLeft/aiChat/MessageTextBlock.qml | 3 +-- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/.config/quickshell/modules/overview/SearchWidget.qml b/.config/quickshell/modules/overview/SearchWidget.qml index 5b61689b..ddc2b64d 100644 --- a/.config/quickshell/modules/overview/SearchWidget.qml +++ b/.config/quickshell/modules/overview/SearchWidget.qml @@ -45,7 +45,6 @@ Item { // Wrapper { action: "accentcolor", execute: (args) => { - console.log(args) executor.executeCommand( `${xdgConfigHome}/quickshell/scripts/switchwall.sh --noswitch --color ${args != '' ? ("'"+args+"'") : ""}` .replace(/file:\/\//, "")) diff --git a/.config/quickshell/modules/sidebarLeft/aiChat/MessageTextBlock.qml b/.config/quickshell/modules/sidebarLeft/aiChat/MessageTextBlock.qml index 8043b916..3c2c4a07 100644 --- a/.config/quickshell/modules/sidebarLeft/aiChat/MessageTextBlock.qml +++ b/.config/quickshell/modules/sidebarLeft/aiChat/MessageTextBlock.qml @@ -12,7 +12,6 @@ import QtQuick.Layouts import Quickshell.Io import Quickshell import Quickshell.Widgets -import Quickshell.Wayland import Quickshell.Hyprland import Qt5Compat.GraphicalEffects @@ -69,7 +68,7 @@ ColumnLayout { if (!editing) { renderLatex() } else { - console.log("Editing mode enabled", segmentContent) + // console.log("Editing mode enabled", segmentContent) textArea.text = segmentContent } }