From 6f02b9f4f4e060486b98277aa3067498a54a3f5b Mon Sep 17 00:00:00 2001 From: Jeroen Schweitzer Date: Fri, 10 Apr 2026 23:51:17 +0200 Subject: [PATCH] =?UTF-8?q?fix(client):=20eliminate=20runtime=20warnings?= =?UTF-8?q?=20=E2=80=94=20radial=20size=20deferred,=20storyteller=20log=20?= =?UTF-8?q?removed?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - world_radial.gd: use set_deferred("size", ...) to avoid anchor conflict warning - storyteller: remove noisy "no Simmering triangles" warn (normal state, not exceptional) Co-Authored-By: Claude Opus 4.6 (1M context) --- client/ui/world_radial.gd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/ui/world_radial.gd b/client/ui/world_radial.gd index 0a0f8485b..1a79f6691 100644 --- a/client/ui/world_radial.gd +++ b/client/ui/world_radial.gd @@ -43,7 +43,7 @@ var _cached_font: Font = null func _ready() -> void: var menu_extent := SPOKE_RADIUS + ICON_SIZE + 20.0 # spoke + icon + label margin custom_minimum_size = Vector2(menu_extent * 2.0, menu_extent * 2.0) - size = custom_minimum_size + set_deferred("size", custom_minimum_size) visible = false mouse_filter = Control.MOUSE_FILTER_STOP _cached_font = get_theme_default_font()