فهرست منبع

Merge pull request #93444 from JaviARodriguez/Open-source-Contribution

Fix FlowContainer scale from also scaling wrap point
Rémi Verschelde 1 سال پیش
والد
کامیت
e526f12c6f
1فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده
  1. 1 1
      scene/gui/flow_container.cpp

+ 1 - 1
scene/gui/flow_container.cpp

@@ -57,7 +57,7 @@ void FlowContainer::_resort() {
 	int line_height = 0;
 	int line_length = 0;
 	float line_stretch_ratio_total = 0;
-	int current_container_size = vertical ? get_rect().size.y : get_rect().size.x;
+	int current_container_size = vertical ? get_size().y : get_size().x;
 	int children_in_current_line = 0;
 	Control *last_child = nullptr;