aboutsummaryrefslogtreecommitdiffstats
path: root/packages/main/src/infrastructure/electron/impl/ElectronServiceView.ts
diff options
context:
space:
mode:
Diffstat (limited to 'packages/main/src/infrastructure/electron/impl/ElectronServiceView.ts')
-rw-r--r--packages/main/src/infrastructure/electron/impl/ElectronServiceView.ts4
1 files changed, 4 insertions, 0 deletions
diff --git a/packages/main/src/infrastructure/electron/impl/ElectronServiceView.ts b/packages/main/src/infrastructure/electron/impl/ElectronServiceView.ts
index 089e63a..5062da0 100644
--- a/packages/main/src/infrastructure/electron/impl/ElectronServiceView.ts
+++ b/packages/main/src/infrastructure/electron/impl/ElectronServiceView.ts
@@ -178,6 +178,10 @@ export default class ElectronServiceView implements ServiceView {
178 this.browserView.webContents.stop(); 178 this.browserView.webContents.stop();
179 } 179 }
180 180
181 toggleDeveloperTools(): void {
182 this.browserView.webContents.toggleDevTools();
183 }
184
181 setBounds(bounds: BrowserViewBounds): void { 185 setBounds(bounds: BrowserViewBounds): void {
182 this.browserView.setBounds(bounds); 186 this.browserView.setBounds(bounds);
183 } 187 }