Partially Revert "[Desktop] Set window action buttons style (#2214)"

This reverts commit 04c23001fc.
- No change to BaseViewTemplate
- No change to mock electronAPI
This commit is contained in:
filtered
2025-01-11 17:03:37 +11:00
parent 104c0a5ba4
commit eb01fa6574
2 changed files with 1 additions and 17 deletions

View File

@@ -46,7 +46,6 @@ import { useColorPaletteStore } from '@/stores/workspace/colorPaletteStore'
import { useSidebarTabStore } from '@/stores/workspace/sidebarTabStore'
import { useWorkspaceStore } from '@/stores/workspaceStore'
import { StatusWsMessageStatus } from '@/types/apiTypes'
import { electronAPI, isElectron } from '@/utils/envUtil'
setupAutoQueueHandler()
@@ -65,13 +64,6 @@ watch(
} else {
document.body.classList.add(DARK_THEME_CLASS)
}
if (isElectron()) {
electronAPI().changeTheme({
color: 'rgba(0, 0, 0, 0)',
symbolColor: newTheme.colors.comfy_base['input-text']
})
}
},
{ immediate: true }
)