Skip to content

Commit 458e5b8

Browse files
authored
Merge pull request #6549 from bdach/text-flow-more-broke
Only consider flowing children when performing layout of text flow
2 parents 1ccf037 + 9df0e91 commit 458e5b8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

osu.Framework/Graphics/Containers/TextFlowContainer.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -404,7 +404,7 @@ private void computeLayout()
404404
var childrenByLine = new List<List<Drawable>>();
405405
var curLine = new List<Drawable>();
406406

407-
foreach (var c in Flow.Children)
407+
foreach (var c in Flow.FlowingChildren)
408408
{
409409
if (c is NewLineContainer nlc)
410410
{

0 commit comments

Comments
 (0)