From 95fbb7981e5198b610f10bb797f98425a64a0fb9 Mon Sep 17 00:00:00 2001 From: Iain Majer Date: Thu, 10 Sep 2026 19:41:32 +0100 Subject: [PATCH] Fix syntax for anchors in Quickshell example Fix example --- docs/part-2-quickshell/what-quickshell-adds.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/docs/part-2-quickshell/what-quickshell-adds.md b/docs/part-2-quickshell/what-quickshell-adds.md index 42acdbe..0a38f58 100644 --- a/docs/part-2-quickshell/what-quickshell-adds.md +++ b/docs/part-2-quickshell/what-quickshell-adds.md @@ -63,12 +63,13 @@ The simplest possible shell is a single panel window sitting at the top of the s ```qml import Quickshell +import QtQuick ShellRoot { PanelWindow { - anchors.top = true - anchors.left = true - anchors.right = true + anchors.top: true + anchors.left: true + anchors.right: true height: 48 color: "#1e1e2e"