From 4b73e5af2429000047f0b2ddc49ddf83c23094d2 Mon Sep 17 00:00:00 2001 From: Michael Alexsander Date: Fri, 5 Dec 2025 11:26:14 -0300 Subject: [PATCH] Fix properties for container sizing not clipping in the inspector --- editor/scene/gui/control_editor_plugin.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/editor/scene/gui/control_editor_plugin.cpp b/editor/scene/gui/control_editor_plugin.cpp index 69b55feeea..f2eb564a90 100644 --- a/editor/scene/gui/control_editor_plugin.cpp +++ b/editor/scene/gui/control_editor_plugin.cpp @@ -439,6 +439,7 @@ EditorPropertySizeFlags::EditorPropertySizeFlags() { flag_expand = memnew(CheckBox); flag_expand->set_text(TTR("Expand")); + flag_expand->set_clip_text(true); vb->add_child(flag_expand); add_focusable(flag_expand); flag_expand->connect(SceneStringName(pressed), callable_mp(this, &EditorPropertySizeFlags::_expand_toggled));