Merge pull request #95389 from Gaktan/graph_node_stretch_fix

Fix graph node stretch not taking titlebar into account
This commit is contained in:
Rémi Verschelde 2024-10-03 15:27:16 +02:00
commit f3694a6933
No known key found for this signature in database
GPG key ID: C3336907360768E1

View file

@ -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.