diff --git a/scene/gui/graph_node.cpp b/scene/gui/graph_node.cpp index 72e59bfc8ac..8f5023104a6 100644 --- a/scene/gui/graph_node.cpp +++ b/scene/gui/graph_node.cpp @@ -208,7 +208,7 @@ void GraphNode::_resort() { // Avoid negative stretch space. stretch_diff = MAX(stretch_diff, 0); - available_stretch_space += stretch_diff - sb_panel->get_margin(SIDE_BOTTOM) - sb_panel->get_margin(SIDE_TOP); + available_stretch_space += stretch_diff - sb_panel->get_margin(SIDE_BOTTOM) - sb_panel->get_margin(SIDE_TOP) - titlebar_min_size.height - sb_titlebar->get_minimum_size().height; // Second pass, discard elements that can't be stretched, this will run while stretchable elements exist.