diff options
Diffstat (limited to 'gui/src/main/window-controller.ts')
| -rw-r--r-- | gui/src/main/window-controller.ts | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gui/src/main/window-controller.ts b/gui/src/main/window-controller.ts index b18775a8b5..553c798334 100644 --- a/gui/src/main/window-controller.ts +++ b/gui/src/main/window-controller.ts @@ -159,7 +159,10 @@ export default class WindowController { return this.webContentsValue.isDestroyed() ? undefined : this.webContentsValue; } - constructor(private delegate: WindowControllerDelegate, windowValue: BrowserWindow) { + constructor( + private delegate: WindowControllerDelegate, + windowValue: BrowserWindow, + ) { this.windowValue = windowValue; this.webContentsValue = windowValue.webContents; this.windowPositioning = delegate.isUnpinnedWindow() |
