From b5be41d25a63e8cdde20efcf75d7e78523edb08e Mon Sep 17 00:00:00 2001 From: FTCHD <144691102+FTCHD@users.noreply.github.com> Date: Thu, 20 Aug 2026 18:40:16 +0300 Subject: [PATCH] use full window for Commander --- lib/tray.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/tray.ts b/lib/tray.ts index 4b7ba7a..2abaa08 100644 --- a/lib/tray.ts +++ b/lib/tray.ts @@ -9,7 +9,7 @@ import { platform } from '@tauri-apps/plugin-os' import { exit } from '@tauri-apps/plugin-process' import { usePersistedStore } from '../store/persisted' import { CLOSE_APP, emitToMain } from './events' -import { openWindow } from './window' +import { openFullWindow, openWindow } from './window' async function buildMenu() { console.log('[buildMenu]') @@ -65,7 +65,7 @@ async function buildMenu() { id: 'commander', text: 'Commander', action: async () => { - await openWindow({ + await openFullWindow({ name: 'Commander', url: '/commander', })