From ad8a2cc3134b507f51ee40b048889f18c587cb5f Mon Sep 17 00:00:00 2001 From: BlackyHawky Date: Sun, 26 Jan 2025 13:38:03 +0100 Subject: [PATCH] Change the tip: hide the hint for a specific key --- Layouts.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Layouts.md b/Layouts.md index 05f0e5f..ae26c76 100644 --- a/Layouts.md +++ b/Layouts.md @@ -352,17 +352,16 @@ Here are the different classes: # Tips -* To hide a hint for a specific key, add the code `{ "type": "placeholder" }` to the first position when editing popup labels. The hint will not appear regardless of Heliboard settings +* To hide the hint for a specific key, add the code `{ "labelFlags": 1073741824 }` to the key. The hint will not appear regardless of Heliboard settings
Click to see example to hide key hint
```json - { "label": "a", "width": 0.1, "type": "normal", "popup": { "relevant": + { "label": "a", "width": 0.1, "type": "normal", "labelFlags": 1073741824, "popup": { "relevant": [ // The comma will not be displayed on the key - { "type": "placeholder" }, { "label": "," }, { "label": "?" }, { "label": "!" },