fix: touch bar functionality on BaseWindow (#43353)
* fix: touch bar functionality on BaseWindow * test: add test for BaseWindow.setTouchBar
This commit is contained in:
parent
46bed807ca
commit
4ae43dcb3b
6 changed files with 96 additions and 90 deletions
|
@ -1,5 +1,7 @@
|
|||
import { EventEmitter } from 'events';
|
||||
import type { BaseWindow as TLWT } from 'electron/main';
|
||||
import { TouchBar } from 'electron/main';
|
||||
|
||||
const { BaseWindow } = process._linkedBinding('electron_browser_base_window') as { BaseWindow: typeof TLWT };
|
||||
|
||||
Object.setPrototypeOf(BaseWindow.prototype, EventEmitter.prototype);
|
||||
|
@ -15,6 +17,10 @@ BaseWindow.prototype._init = function (this: TLWT) {
|
|||
}
|
||||
};
|
||||
|
||||
BaseWindow.prototype.setTouchBar = function (touchBar) {
|
||||
(TouchBar as any)._setOnWindow(touchBar, this);
|
||||
};
|
||||
|
||||
// Properties
|
||||
|
||||
Object.defineProperty(BaseWindow.prototype, 'autoHideMenuBar', {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue