From 826f54e90d6158e7f35e72e755ab807b97253783 Mon Sep 17 00:00:00 2001 From: end-4 <97237370+end-4@users.noreply.github.com> Date: Sat, 10 May 2025 17:53:21 +0200 Subject: [PATCH] ai: text block: remove unecessary key hogger --- .../modules/sidebarLeft/aiChat/MessageTextBlock.qml | 7 ------- 1 file changed, 7 deletions(-) diff --git a/.config/quickshell/modules/sidebarLeft/aiChat/MessageTextBlock.qml b/.config/quickshell/modules/sidebarLeft/aiChat/MessageTextBlock.qml index 3c2c4a072..c3850271a 100644 --- a/.config/quickshell/modules/sidebarLeft/aiChat/MessageTextBlock.qml +++ b/.config/quickshell/modules/sidebarLeft/aiChat/MessageTextBlock.qml @@ -121,13 +121,6 @@ ColumnLayout { segmentContent = text } - Keys.onPressed: (event) => { - if ((event.key === Qt.Key_C) && event.modifiers == Qt.ControlModifier) { - messageText.copy() - event.accepted = true - } - } - onLinkActivated: (link) => { Qt.openUrlExternally(link) Hyprland.dispatch("global quickshell:sidebarLeftClose")