From 71f3f720bf45caab554318fd3e503b27822468f5 Mon Sep 17 00:00:00 2001 From: bymyself Date: Thu, 27 Feb 2025 06:41:50 -0700 Subject: [PATCH] Lower floor on max history items setting (#2748) --- src/constants/coreSettings.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/constants/coreSettings.ts b/src/constants/coreSettings.ts index e84127acf..0a66a1674 100644 --- a/src/constants/coreSettings.ts +++ b/src/constants/coreSettings.ts @@ -657,9 +657,9 @@ export const CORE_SETTINGS: SettingParams[] = [ tooltip: 'The maximum number of tasks that show in the queue history.', type: 'slider', attrs: { - min: 16, + min: 2, max: 256, - step: 16 + step: 2 }, defaultValue: 64, versionAdded: '1.4.12'