node-mac-recorder 2.20.16 → 2.20.17

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.20.16",
3
+ "version": "2.20.17",
4
4
  "description": "Native macOS screen recording package for Node.js applications",
5
5
  "main": "index.js",
6
6
  "keywords": [
@@ -58,7 +58,7 @@ static NSInteger g_currentActiveScreenIndex = -1;
58
58
 
59
59
  // Record icon helpers
60
60
  static NSImage *CreateRecordIconImage(CGFloat size) {
61
- const CGFloat leadingInset = 8.0;
61
+ const CGFloat leadingInset = 24.0;
62
62
  const CGFloat trailingSpacing = 6.0;
63
63
  CGFloat width = leadingInset + size + trailingSpacing;
64
64
  NSImage *image = [[[NSImage alloc] initWithSize:NSMakeSize(width, size)] autorelease];