From 0439f744b95effc12e48feef71637a638511f58b Mon Sep 17 00:00:00 2001 From: Christian Byrne Date: Fri, 16 Jan 2026 20:49:14 -0800 Subject: [PATCH] feat: enable new queue progress by default (#8121) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## Summary Enable the new queue progress UI/UX by default in order to test it and be able to ask community members what they think (they can easily test with `--front-end-version Comfy-Org/ComfyUI_frontend@latest`). More context: [thread](https://comfy-organization.slack.com/archives/C0A80028GTA/p1768534815533549) ┆Issue is synchronized with this [Notion page](https://www.notion.so/PR-8121-feat-enable-new-queue-progress-by-default-2eb6d73d365081a2ae23d71243369984) by [Unito](https://www.unito.io) --------- Co-authored-by: GitHub Action --- src/platform/settings/constants/coreSettings.ts | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/src/platform/settings/constants/coreSettings.ts b/src/platform/settings/constants/coreSettings.ts index 33f656669..3b6a06879 100644 --- a/src/platform/settings/constants/coreSettings.ts +++ b/src/platform/settings/constants/coreSettings.ts @@ -1167,10 +1167,12 @@ export const CORE_SETTINGS: SettingParams[] = [ }, { id: 'Comfy.Queue.QPOV2', - name: 'Queue Panel V2', - type: 'hidden', - tooltip: 'Enable the new Assets Panel design with list/grid view toggle', - defaultValue: false, + category: ['Comfy', 'Queue', 'Layout'], + name: 'Use the unified job queue in the Assets side panel', + type: 'boolean', + tooltip: + 'Replaces the floating job queue panel with an equivalent job queue embedded in the Assets side panel. You can disable this to return to the floating panel layout.', + defaultValue: true, experimental: true } ]