From 510d965eb1032add4377c7563189dd5ecdc6abb0 Mon Sep 17 00:00:00 2001 From: milonekrone Date: Wed, 14 Jan 2026 16:03:31 +0100 Subject: [PATCH] Add qml/GlowFocus.qml --- qml/GlowFocus.qml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 qml/GlowFocus.qml diff --git a/qml/GlowFocus.qml b/qml/GlowFocus.qml new file mode 100644 index 0000000..fd22558 --- /dev/null +++ b/qml/GlowFocus.qml @@ -0,0 +1,16 @@ +import QtQuick + +Item { + Rectangle { + anchors.fill: parent + radius: 16 + color: "transparent" + border.width: 0 + } + Rectangle { + anchors.fill: parent + radius: 16 + color: "#7fb6ff" + opacity: 0.10 + } +}