From c111fb77583723ad1f6e95ae908aabb6e020d034 Mon Sep 17 00:00:00 2001 From: Benjamin Lu Date: Wed, 11 Mar 2026 23:35:16 -0700 Subject: [PATCH] fix: rename docked queue panel setting (#9620) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## Summary Rename the `Comfy.Queue.QPOV2` settings label to `Docked job history/queue panel` to improve searchability/discoverability in the settings UI. ## Changes - **What**: Updated the visible setting name in the core settings definition and the English locale string. ## Review Focus The change is intentionally limited to the display label. The persisted setting key remains `Comfy.Queue.QPOV2`, so existing user configuration is preserved. ## Screenshots (if applicable) Not applicable. ┆Issue is synchronized with this [Notion page](https://www.notion.so/PR-9620-fix-rename-docked-queue-panel-setting-31d6d73d36508189a2d1d3a621739a22) by [Unito](https://www.unito.io) --- src/locales/en/settings.json | 4 ++-- src/platform/settings/constants/coreSettings.ts | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/locales/en/settings.json b/src/locales/en/settings.json index 7d11e30c8d..f80fbfb716 100644 --- a/src/locales/en/settings.json +++ b/src/locales/en/settings.json @@ -348,8 +348,8 @@ "tooltip": "The maximum number of tasks that show in the queue history." }, "Comfy_Queue_QPOV2": { - "name": "Use the unified job queue in the Assets side panel", - "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." + "name": "Docked job history/queue panel", + "tooltip": "Replaces the floating job queue panel with an equivalent job queue embedded in the job history side panel. You can disable this to return to the floating panel layout." }, "Comfy_QueueButton_BatchCountLimit": { "name": "Batch count limit", diff --git a/src/platform/settings/constants/coreSettings.ts b/src/platform/settings/constants/coreSettings.ts index b65c52a3d2..c5749086f0 100644 --- a/src/platform/settings/constants/coreSettings.ts +++ b/src/platform/settings/constants/coreSettings.ts @@ -1201,10 +1201,10 @@ export const CORE_SETTINGS: SettingParams[] = [ { id: 'Comfy.Queue.QPOV2', category: ['Comfy', 'Queue', 'Layout'], - name: 'Use the unified job queue in the Assets side panel', + name: 'Docked job history/queue 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.', + 'Replaces the floating job queue panel with an equivalent job queue embedded in the job history side panel. You can disable this to return to the floating panel layout.', defaultValue: false, experimental: true },