-
As far as I know, the minimum number is 16. I want to reduce it more, is there any way? |
Beta Was this translation helpful? Give feedback.
Answered by
LukeG89
Feb 25, 2025
Replies: 1 comment
-
No, this is currently the minimum task size: https://github.com/Comfy-Org/ComfyUI_frontend/blob/1a7145fbc9ec78b729189fba7a1e7d69fdb5832c/src/constants/coreSettings.ts#L654C3-L666C5 {
id: 'Comfy.Queue.MaxHistoryItems',
name: 'Queue history size',
tooltip: 'The maximum number of tasks that show in the queue history.',
type: 'slider',
attrs: {
min: 16,
max: 256,
step: 16
},
defaultValue: 64,
versionAdded: '1.4.12'
}, But you can open a feature request in the frontend repo asking to reduce the minimum task size. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
ytoaa
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
No, this is currently the minimum task size: https://github.com/Comfy-Org/ComfyUI_frontend/blob/1a7145fbc9ec78b729189fba7a1e7d69fdb5832c/src/constants/coreSettings.ts#L654C3-L666C5
But you can open a feature request in the frontend repo asking to reduce the minimum task size.