From 1095f6242c83de422d9ee67a10a5da7a997b4934 Mon Sep 17 00:00:00 2001 From: Egor Date: Sun, 7 Sep 2025 11:38:56 -0700 Subject: [PATCH] correct the image gen native dialog titles --- src/stores/launchConfig.ts | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/stores/launchConfig.ts b/src/stores/launchConfig.ts index eb5d301..5452beb 100644 --- a/src/stores/launchConfig.ts +++ b/src/stores/launchConfig.ts @@ -417,7 +417,7 @@ export const useLaunchConfigStore = create((set, get) => ({ selectSdt5xxlFile: async () => { const result = await window.electronAPI.kobold.selectModelFile( - 'Select a SDT5XXL Model File' + 'Select a T5XXL Model File' ); if (result) { set({ sdt5xxl: result }); @@ -426,7 +426,7 @@ export const useLaunchConfigStore = create((set, get) => ({ selectSdcliplFile: async () => { const result = await window.electronAPI.kobold.selectModelFile( - 'Select a SDCLIP-L Model File' + 'Select a CLIP-L Model File' ); if (result) { set({ sdclipl: result }); @@ -435,7 +435,7 @@ export const useLaunchConfigStore = create((set, get) => ({ selectSdclipgFile: async () => { const result = await window.electronAPI.kobold.selectModelFile( - 'Select a SDCLIP-G Model File' + 'Select a CLIP-G Model File' ); if (result) { set({ sdclipg: result }); @@ -444,7 +444,7 @@ export const useLaunchConfigStore = create((set, get) => ({ selectSdphotomakerFile: async () => { const result = await window.electronAPI.kobold.selectModelFile( - 'Select a SDPhotoMaker Model File' + 'Select a PhotoMaker Model File' ); if (result) { set({ sdphotomaker: result }); @@ -453,7 +453,7 @@ export const useLaunchConfigStore = create((set, get) => ({ selectSdvaeFile: async () => { const result = await window.electronAPI.kobold.selectModelFile( - 'Select a SDVAE Model File' + 'Select a VAE Model File' ); if (result) { set({ sdvae: result }); @@ -462,7 +462,7 @@ export const useLaunchConfigStore = create((set, get) => ({ selectSdloraFile: async () => { const result = await window.electronAPI.kobold.selectModelFile( - 'Select a SDLORA Model File' + 'Select a LORA Model File' ); if (result) { set({ sdlora: result });