From eb28203ca3b3cffbb2ea81c8719455993c1deeb2 Mon Sep 17 00:00:00 2001 From: outfoxxed Date: Mon, 28 Jul 2025 00:11:30 -0700 Subject: [PATCH] remove collapsible from qml language guide Fixes #12 --- src/guide/v0_1_0/qml-language.md | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/guide/v0_1_0/qml-language.md b/src/guide/v0_1_0/qml-language.md index 7048e61..8016d7d 100644 --- a/src/guide/v0_1_0/qml-language.md +++ b/src/guide/v0_1_0/qml-language.md @@ -2,7 +2,6 @@ title: "QML Language" index: 10 --- -import Collapsible from "@components/Collapsible.astro"; Quickshell is configured using the Qt Modeling Language, or QML. This page explains what you need to know about QML to start using Quickshell. @@ -307,15 +306,11 @@ The id must be lowercase. } ``` - - The `id` property isn't really a property, and doesn't do anything other than expose the object to the current file. It is only called a property because it uses very similar syntax to one, and is the only exception to standard property definition rules. The name `id` is always reserved for the id property. - - ##### Property access scopes Properties are "in scope" and usable in two cases.