fix: GetPosition when Segments is null

pull/436/head
victornor 2023-03-20 13:33:14 +01:00 committed by GitHub
parent d2b10980e3
commit 5e7282c27d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -419,7 +419,7 @@ namespace UnityEngine.UI.Extensions
{
return Segments[segmentIndex - 1][index - 1];
}
else if (Segments.Count > 0)
else if (Segments?.Count > 0)
{
var segmentIndexCount = 0;
var indexCount = index;
@ -480,4 +480,4 @@ namespace UnityEngine.UI.Extensions
}
}
}
}
}