From a571fb5528c65f94bc3efe60941861a9a4672f84 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20Lov=C3=A9n?= Date: Sun, 1 May 2022 17:59:46 +0200 Subject: [PATCH] Handle condition shorthands in trace graphs (#12533) --- src/components/trace/hat-script-graph.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/components/trace/hat-script-graph.ts b/src/components/trace/hat-script-graph.ts index 7441bdebae..45ea965b03 100644 --- a/src/components/trace/hat-script-graph.ts +++ b/src/components/trace/hat-script-graph.ts @@ -111,6 +111,9 @@ export class HatScriptGraph extends LitElement { private typeRenderers = { condition: this.render_condition_node, + and: this.render_condition_node, + or: this.render_condition_node, + not: this.render_condition_node, delay: this.render_delay_node, event: this.render_event_node, scene: this.render_scene_node,