We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 98deb2a + 238859f commit f3694a6Copy full SHA for f3694a6
scene/gui/graph_node.cpp
@@ -208,7 +208,7 @@ void GraphNode::_resort() {
208
// Avoid negative stretch space.
209
stretch_diff = MAX(stretch_diff, 0);
210
211
- 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;
212
213
// Second pass, discard elements that can't be stretched, this will run while stretchable elements exist.
214
0 commit comments