Skip to content

Commit

Permalink
🐛 Fix reference to viewbox
Browse files Browse the repository at this point in the history
  • Loading branch information
vexx32 committed Mar 18, 2020
1 parent 88d7775 commit bf221ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Module/src/PSWordCloud/NewWordCloudCommand.cs
Original file line number Diff line number Diff line change
Expand Up @@ -838,7 +838,7 @@ protected override void EndProcessing()
foreach (var point in radialPoints)
{
pointsChecked++;
if (!viewbox.Contains(point) && point != centrePoint)
if (!drawableBounds.Contains(point) && point != centrePoint)
{
continue;
}
Expand Down

0 comments on commit bf221ed

Please sign in to comment.