Add setting to disable double click node title edit (#668)

This commit is contained in:
Chenlei Hu
2024-08-28 13:58:33 -04:00
committed by GitHub
parent 493805d0ee
commit 4e8acf6c77
3 changed files with 16 additions and 1 deletions

View File

@@ -465,7 +465,8 @@ const zSettings = z.record(z.any()).and(
'Comfy.Workflow.SortNodeIdOnSave': z.boolean(),
'Comfy.Queue.ImageFit': z.enum(['contain', 'cover']),
'Comfy.Workflow.ModelDownload.AllowedSources': z.array(z.string()),
'Comfy.Workflow.ModelDownload.AllowedSuffixes': z.array(z.string())
'Comfy.Workflow.ModelDownload.AllowedSuffixes': z.array(z.string()),
'Comfy.Node.DoubleClickTitleToEdit': z.boolean()
})
.optional()
)