Quine's fork of "Hyper" by Vercel, A terminal built on web technologies
Find a file
2025-04-21 22:30:29 -07:00
.github/workflows fix ci 2024-11-03 09:12:14 +01:00
test fixes window dragging when window was not focused 2025-01-17 13:23:37 +01:00
.gitignore initial 2024-11-03 09:05:52 +01:00
binding.gyp initial 2024-11-03 09:05:52 +01:00
electron_drag_click.mm fixes window dragging when window was not focused 2025-01-17 13:23:37 +01:00
index.d.ts Use electron 34.5.1 2025-04-21 22:20:19 -07:00
index.js fixes platform support 2024-11-09 20:46:58 +01:00
LICENSE initial 2024-11-03 09:05:52 +01:00
package-lock.json Use electron 34.5.1 2025-04-21 22:20:19 -07:00
package.json Bump version to 1.0.6b 2025-04-21 22:30:29 -07:00
README.md initial 2024-11-03 09:05:52 +01:00

electron-drag-click

Description

$ npm i electron-drag-click

This Native Node Module allows you to change the behavior of how frameless Electron browser windows handle pointer events on macOS. Chromium's built-in mechanism ignores pointer events in draggable regions in frameless windows. This module changes the built-in hit testing so in frameless windows pointer events are propagated even in draggable regions.

It is based on my earlier PR in the Electron repository (https://github.com/electron/electron/pull/38208), which after some discussion with maintainers was decided not to be merged in, and rather be handled in a separate Native Module.

The code is using ObjectiveC's runtime method swizzling capability, which allows you to alter the implementation of an existing selector. Shoutout to @tzahola, who helped me dealing with these APIs.

Usage

const { app, BrowserWindow } = require('electron');
const electronDragClick = require('electron-drag-click');

electronDragClick();

app.on('ready', () => {
  const win = new BrowserWindow({
    width: 800,
    height: 600,
    frame: false,
  });

  win.loadFile('./index.html');
});