fix: Fixed issue where popover/modal headers would get cut off by desktop titlebar

This commit is contained in:
Aman Harwara
2023-01-25 21:27:58 +05:30
parent 00eae833b0
commit a8c0be4f63
5 changed files with 9 additions and 5 deletions

View File

@@ -202,7 +202,7 @@ async function createWindowServices(window: Electron.BrowserWindow, appState: Ap
initializeZoomManager(window, appState.store)
const backupsManager = createBackupsManager(window.webContents, appState)
const updateManager = setupUpdates(window, appState, backupsManager)
// const updateManager = setupUpdates(window, appState, backupsManager)
const trayManager = createTrayManager(window, appState.store)
const spellcheckerManager = createSpellcheckerManager(appState.store, window.webContents, appLocale)
const mediaManager = new MediaManager()
@@ -224,7 +224,7 @@ async function createWindowServices(window: Electron.BrowserWindow, appState: Ap
return {
backupsManager,
updateManager,
// updateManager,
trayManager,
spellcheckerManager,
menuManager,