From b3bb3763915404cbcbcda87e36038b80c7800f83 Mon Sep 17 00:00:00 2001 From: Robert Grigoryan Date: Mon, 13 Oct 2025 14:37:25 +0200 Subject: [PATCH] Fix description of `Viewport::set_input_as_handled` The method stops the `InputEvent` from propagating up, not down. --- doc/classes/Viewport.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/classes/Viewport.xml b/doc/classes/Viewport.xml index 836f42dcc8d..8cdc3775216 100644 --- a/doc/classes/Viewport.xml +++ b/doc/classes/Viewport.xml @@ -285,7 +285,7 @@ - Stops the input from propagating further down the [SceneTree]. + Stops the input from propagating further up the [SceneTree]. [b]Note:[/b] This does not affect the methods in [Input], only the way events are propagated.