Skip to content

Commit 073b22c

Browse files
committed
make strokes thicker
1 parent b25d058 commit 073b22c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

SharpEyes/ViewModels/MotionEnergyViewModel.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1038,7 +1038,7 @@ private Dictionary<double, double> BuildStrokeThicknessBySize()
10381038

10391039
Dictionary<double, double> strokeThicknessBySize = new Dictionary<double, double>();
10401040
for (int index = 0; index < uniqueSpatialEnvelopes.Count; index++)
1041-
strokeThicknessBySize[uniqueSpatialEnvelopes[index]] = index + 1;
1041+
strokeThicknessBySize[uniqueSpatialEnvelopes[index]] = (index * 2) + 1;
10421042
return strokeThicknessBySize;
10431043
}
10441044

0 commit comments

Comments
 (0)