|
@@ -1,3 +1,4 @@
|
|
|
+import { BrowserWindow } from 'electron/main';
|
|
|
const { createDesktopCapturer } = process._linkedBinding('electron_browser_desktop_capturer');
|
|
|
|
|
|
const deepEqual = (a: ElectronInternal.GetSourcesOptions, b: ElectronInternal.GetSourcesOptions) => JSON.stringify(a) === JSON.stringify(b);
|
|
@@ -15,6 +16,16 @@ function isValid (options: Electron.SourcesOptions) {
|
|
|
export async function getSources (args: Electron.SourcesOptions) {
|
|
|
if (!isValid(args)) throw new Error('Invalid options');
|
|
|
|
|
|
+ const resizableValues = new Map();
|
|
|
+ if (process.platform === 'darwin') {
|
|
|
+ // Fix for bug in ScreenCaptureKit that modifies a window's styleMask the first time
|
|
|
+ // it captures a non-resizable window. We record each non-resizable window's styleMask,
|
|
|
+ // and we restore modified styleMasks later, after the screen capture.
|
|
|
+ for (const win of BrowserWindow.getAllWindows()) {
|
|
|
+ resizableValues.set([win.id], win.resizable);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
const captureWindow = args.types.includes('window');
|
|
|
const captureScreen = args.types.includes('screen');
|
|
|
|
|
@@ -44,6 +55,14 @@ export async function getSources (args: Electron.SourcesOptions) {
|
|
|
delete capturer._onerror;
|
|
|
delete capturer._onfinished;
|
|
|
capturer = null;
|
|
|
+
|
|
|
+ if (process.platform === 'darwin') {
|
|
|
+ for (const win of BrowserWindow.getAllWindows()) {
|
|
|
+ if (resizableValues.has(win.id)) {
|
|
|
+ win.resizable = resizableValues.get(win.id);
|
|
|
+ }
|
|
|
+ };
|
|
|
+ }
|
|
|
}
|
|
|
// Remove from currentlyRunning once we resolve or reject
|
|
|
currentlyRunning = currentlyRunning.filter(running => running.options !== options);
|