From 70689a6de458caa5e8eb485241906d3ab71e07e8 Mon Sep 17 00:00:00 2001 From: Cameron Fischer Date: Tue, 10 Feb 2026 06:30:08 -0500 Subject: [PATCH] keyboard-driven-input couldn't use slots well (#9649) Now it can, at least now without strange and arbitary tweaks to the $depth attribute. --- core/wiki/macros/keyboard-driven-input.tid | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/core/wiki/macros/keyboard-driven-input.tid b/core/wiki/macros/keyboard-driven-input.tid index a514f4c13..7e7b88130 100644 --- a/core/wiki/macros/keyboard-driven-input.tid +++ b/core/wiki/macros/keyboard-driven-input.tid @@ -122,15 +122,15 @@ tags: $:/tags/Macro \whitespace trim \procedure keyboard-driven-input-actions() <%if [match[((input-accept))]] %> -<> +<$transclude $variable=inputAcceptActions $fillignore=yes /> <%elseif [match[((input-accept-variant))]] %> -<> +<$transclude $variable=inputAcceptVariantActions $fillignore=yes /> <%elseif [match[((input-up))]] %> -<> +<$transclude $variable=input-next-actions-before $fillignore=yes /> <%elseif [match[((input-down))]] %> -<> +<$transclude $variable=input-next-actions-after $fillignore=yes /> <%elseif [match[((input-cancel))]] %> -<> +<$transclude $variable=inputCancelActions $fillignore=yes /> <%endif%> \end keyboard-driven-input-actions