From 1b136a636b278315b8d95dfb9ae0bd0e4a17014e Mon Sep 17 00:00:00 2001 From: alfrix Date: Mon, 2 Oct 2023 23:08:00 -0300 Subject: [PATCH] docs: clarify why some macros are no longer visible close #1137 --- docs/macros.md | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/docs/macros.md b/docs/macros.md index 6fd3cbc7..3f80ed8a 100644 --- a/docs/macros.md +++ b/docs/macros.md @@ -1,5 +1,13 @@ # Macros +## Hidden by the interface + +All gcode_macros with the attribute `rename_existing` are hidden , because these are default Klipper Gcodes +and these should be implemented in KlipperScreen itself with buttons already. +[This is the same behaiviour of other UIs](https://docs.mainsail.xyz/overview/features/hide-macros-outputs-or-fans#macros-with-rename_existing) + +[LOAD_FILAMENT and UNLOAD_FILAMENT are also hidden](#load_filament-unload_filament) + ## Hide Macros Macros can be completely hidden in the interface by prefixing the name with an underscore. @@ -20,7 +28,7 @@ gcode: ### LOAD_FILAMENT / UNLOAD_FILAMENT -This macros are used in the Extrude panel `Load` and `Unload` buttons. +This macros are used in the Extrude panel `Load` and `Unload` buttons. and they will be hidden from the macros panel. The selected speed in the panel is transferred as a parameter.