mirror of
https://github.com/toeverything/AFFiNE.git
synced 2024-12-23 10:21:35 +03:00
parent
8bf0458ef4
commit
24bf1beac8
@ -258,7 +258,9 @@ export async function openUrlInHiddenWindow(urlObj: URL) {
|
||||
});
|
||||
|
||||
if (environment.isDebug) {
|
||||
win.webContents.openDevTools();
|
||||
win.webContents.openDevTools({
|
||||
mode: 'detach',
|
||||
});
|
||||
}
|
||||
|
||||
win.on('close', e => {
|
||||
|
@ -815,7 +815,9 @@ export class WebContentViewsManager {
|
||||
|
||||
view.webContents.loadURL(shellViewUrl).catch(logger.error);
|
||||
if (isDev) {
|
||||
view.webContents.openDevTools();
|
||||
view.webContents.openDevTools({
|
||||
mode: 'detach',
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
@ -999,13 +1001,17 @@ export const showDevTools = (id?: string) => {
|
||||
getCustomThemeWindow()
|
||||
.then(w => {
|
||||
if (w && w.isFocused()) {
|
||||
w.webContents.openDevTools();
|
||||
w.webContents.openDevTools({
|
||||
mode: 'detach',
|
||||
});
|
||||
} else {
|
||||
const view = id
|
||||
? WebContentViewsManager.instance.getViewById(id)
|
||||
: WebContentViewsManager.instance.activeWorkbenchView;
|
||||
if (view) {
|
||||
view.webContents.openDevTools();
|
||||
view.webContents.openDevTools({
|
||||
mode: 'detach',
|
||||
});
|
||||
}
|
||||
}
|
||||
})
|
||||
|
Loading…
Reference in New Issue
Block a user