@maciejwojs/screen-capture 0.1.4 → 0.1.5

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": "@maciejwojs/screen-capture",
3
- "version": "0.1.4",
3
+ "version": "0.1.5",
4
4
  "description": "Native screen capture addon for Node.js",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -256,7 +256,7 @@ class LinuxPlatformCapture final : public IPlatformCapture {
256
256
  g_variant_builder_init(&builder, G_VARIANT_TYPE("a{sv}"));
257
257
  g_variant_builder_add(&builder, "{sv}", "types", g_variant_new_uint32(1));
258
258
  g_variant_builder_add(&builder, "{sv}", "multiple", g_variant_new_boolean(FALSE));
259
- g_variant_builder_add(&builder, "{sv}", "cursor_mode", g_variant_new_uint32(2));
259
+ g_variant_builder_add(&builder, "{sv}", "cursor_mode", g_variant_new_uint32(1));
260
260
 
261
261
  m_stage = PortalStage::SelectingSources;
262
262
  CallPortalMethod("SelectSources", g_variant_new("(oa{sv})", m_sessionHandle.c_str(), &builder));