diff --git a/packages/ui/src/main/window/browserAssistantWindow.ts b/packages/ui/src/main/window/browserAssistantWindow.ts index 7973351..3fc60a1 100644 --- a/packages/ui/src/main/window/browserAssistantWindow.ts +++ b/packages/ui/src/main/window/browserAssistantWindow.ts @@ -31,6 +31,7 @@ export function createBrowserAssistantWindow( minWidth: 800, height: 400, resizable: true, + frame: true, show: false, autoHideMenuBar: true, webPreferences: { diff --git a/packages/ui/src/main/window/commonJobConditionConfigWindow.ts b/packages/ui/src/main/window/commonJobConditionConfigWindow.ts index c4daaa9..7275749 100644 --- a/packages/ui/src/main/window/commonJobConditionConfigWindow.ts +++ b/packages/ui/src/main/window/commonJobConditionConfigWindow.ts @@ -16,6 +16,7 @@ export function createCommonJobConditionConfigWindow( resizable: false, show: false, autoHideMenuBar: true, + frame: true, webPreferences: { preload: path.join(__dirname, '../preload/index.js'), sandbox: false diff --git a/packages/ui/src/main/window/cookieAssistantWindow.ts b/packages/ui/src/main/window/cookieAssistantWindow.ts index 6a27979..bdd3947 100644 --- a/packages/ui/src/main/window/cookieAssistantWindow.ts +++ b/packages/ui/src/main/window/cookieAssistantWindow.ts @@ -20,6 +20,7 @@ export function createCookieAssistantWindow( resizable: true, show: false, autoHideMenuBar: true, + frame: true, webPreferences: { preload: path.join(__dirname, '../preload/index.js'), sandbox: false diff --git a/packages/ui/src/main/window/firstLaunchNoticeWindow.ts b/packages/ui/src/main/window/firstLaunchNoticeWindow.ts index 45dd4d8..d233088 100644 --- a/packages/ui/src/main/window/firstLaunchNoticeWindow.ts +++ b/packages/ui/src/main/window/firstLaunchNoticeWindow.ts @@ -8,11 +8,12 @@ export function createFirstLaunchNoticeWindow( // Create the browser window. firstLaunchNoticeWindow = new BrowserWindow({ width: 960, - height: 640, - resizable: false, + maxWidth: 960, + minHeight: 320, + resizable: true, show: false, autoHideMenuBar: true, - frame: false, + frame: true, webPreferences: { preload: path.join(__dirname, '../preload/index.js'), sandbox: false diff --git a/packages/ui/src/main/window/llmConfigWindow.ts b/packages/ui/src/main/window/llmConfigWindow.ts index 0e99de6..9e65de4 100644 --- a/packages/ui/src/main/window/llmConfigWindow.ts +++ b/packages/ui/src/main/window/llmConfigWindow.ts @@ -15,6 +15,7 @@ export function createLlmConfigWindow( resizable: false, show: false, autoHideMenuBar: true, + frame: true, webPreferences: { preload: path.join(__dirname, '../preload/index.js'), sandbox: false diff --git a/packages/ui/src/main/window/mainWindow.ts b/packages/ui/src/main/window/mainWindow.ts index cb8cec0..e87fb03 100644 --- a/packages/ui/src/main/window/mainWindow.ts +++ b/packages/ui/src/main/window/mainWindow.ts @@ -12,6 +12,7 @@ export function createMainWindow(): BrowserWindow { minWidth: 1280, show: false, autoHideMenuBar: true, + frame: true, ...(process.platform === 'linux' ? { /* icon */ diff --git a/packages/ui/src/main/window/readNoReplyReminderLlmMockWindow.ts b/packages/ui/src/main/window/readNoReplyReminderLlmMockWindow.ts index c7988fd..13e73fb 100644 --- a/packages/ui/src/main/window/readNoReplyReminderLlmMockWindow.ts +++ b/packages/ui/src/main/window/readNoReplyReminderLlmMockWindow.ts @@ -17,6 +17,7 @@ export function createReadNoReplyReminderLlmMockWindow( resizable: false, show: false, autoHideMenuBar: true, + frame: true, webPreferences: { preload: path.join(__dirname, '../preload/index.js'), sandbox: false diff --git a/packages/ui/src/main/window/resumeEditorWindow.ts b/packages/ui/src/main/window/resumeEditorWindow.ts index a19ccf7..c423999 100644 --- a/packages/ui/src/main/window/resumeEditorWindow.ts +++ b/packages/ui/src/main/window/resumeEditorWindow.ts @@ -15,6 +15,7 @@ export function createResumeEditorWindow( resizable: true, show: false, autoHideMenuBar: true, + frame: true, webPreferences: { preload: path.join(__dirname, '../preload/index.js'), sandbox: false