From 6223320d7d320430afc5f3a833f5a375bb98db79 Mon Sep 17 00:00:00 2001 From: end-4 <97237370+end-4@users.noreply.github.com> Date: Thu, 8 May 2025 11:29:19 +0200 Subject: [PATCH] ai chat: code block: i beam cursor when editing --- .config/quickshell/modules/sidebarLeft/aiChat/AiMessage.qml | 1 + 1 file changed, 1 insertion(+) diff --git a/.config/quickshell/modules/sidebarLeft/aiChat/AiMessage.qml b/.config/quickshell/modules/sidebarLeft/aiChat/AiMessage.qml index eb85dfd9..eebed5b8 100644 --- a/.config/quickshell/modules/sidebarLeft/aiChat/AiMessage.qml +++ b/.config/quickshell/modules/sidebarLeft/aiChat/AiMessage.qml @@ -470,6 +470,7 @@ Rectangle { id: codeBlockMouseArea anchors.fill: parent acceptedButtons: root.editing ? Qt.NoButton : Qt.LeftButton + cursorShape: (root.enableMouseSelection || root.editing) ? Qt.IBeamCursor : Qt.ArrowCursor onWheel: (event) => { event.accepted = false }