remove debug logging and setting

This commit is contained in:
bymyself
2025-09-04 18:54:23 -07:00
parent 1e307564f0
commit e8dae57a6a
9 changed files with 5 additions and 155 deletions

View File

@@ -294,21 +294,6 @@ export function useCoreCommands(): ComfyCommand[] {
await settingStore.set('Comfy.VueNodes.Enabled', !current)
}
},
{
id: 'Experimental.ToggleVueNodeDebugPanel',
label: () =>
`Experimental: ${
useSettingStore().get('Comfy.VueNodes.DebugPanel.Visible')
? 'Hide'
: 'Show'
} Vue Node Debug Panel`,
function: async () => {
const settingStore = useSettingStore()
const current =
settingStore.get('Comfy.VueNodes.DebugPanel.Visible') ?? false
await settingStore.set('Comfy.VueNodes.DebugPanel.Visible', !current)
}
},
{
id: 'Comfy.Canvas.FitView',
icon: 'pi pi-expand',