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 },