Skip to content

Commit bf221ed

Browse files
committed
🐛 Fix reference to viewbox
1 parent 88d7775 commit bf221ed

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Module/src/PSWordCloud/NewWordCloudCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -838,7 +838,7 @@ protected override void EndProcessing()
838838
foreach (var point in radialPoints)
839839
{
840840
pointsChecked++;
841-
if (!viewbox.Contains(point) && point != centrePoint)
841+
if (!drawableBounds.Contains(point) && point != centrePoint)
842842
{
843843
continue;
844844
}

0 commit comments

Comments
 (0)