Browse Source

Merge branch 'v2_develop' into v2_2491-Overlapped

Tig 11 months ago
parent
commit
963fd99e44
1 changed files with 5 additions and 0 deletions
  1. 5 0
      Terminal.Gui/View/Layout/DimAuto.cs

+ 5 - 0
Terminal.Gui/View/Layout/DimAuto.cs

@@ -153,6 +153,11 @@ public record DimAuto (Dim? MaximumContentDim, Dim? MinimumContentDim, DimAutoSt
                                                            .ToList ();
                 }
 
+                foreach (View notDependentSubView in notDependentSubViews)
+                {
+                    notDependentSubView.SetRelativeLayout (us.GetContentSize ());
+                }
+
                 for (var i = 0; i < notDependentSubViews.Count; i++)
                 {
                     View v = notDependentSubViews [i];