node-mac-recorder 2.10.30 → 2.10.31

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "node-mac-recorder",
3
- "version": "2.10.30",
3
+ "version": "2.10.31",
4
4
  "description": "Native macOS screen recording package for Node.js applications",
5
5
  "main": "index.js",
6
6
  "keywords": [
@@ -129,8 +129,9 @@ void updateScreenOverlays();
129
129
  [fillColor setFill];
130
130
  [highlightPath fill];
131
131
 
132
- [strokeColor setStroke];
132
+ // 1px purple stroke
133
133
  [highlightPath setLineWidth:1.0];
134
+ [strokeColor setStroke];
134
135
  [highlightPath stroke];
135
136
  }
136
137