From 8e3eed57cb0771c5116fcd89d17987246eb0dba0 Mon Sep 17 00:00:00 2001 From: Ansgar Becker Date: Sat, 10 Feb 2024 15:43:25 +0100 Subject: [PATCH] Issue #1906: by default, use grayscale icons on inactive *query* tabs only --- source/apphelpers.pas | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/apphelpers.pas b/source/apphelpers.pas index ec006fd8..a99017fe 100644 --- a/source/apphelpers.pas +++ b/source/apphelpers.pas @@ -3830,7 +3830,7 @@ begin InitSetting(asTabCloseOnDoubleClick, 'TabCloseOnDoubleClick', 0, True); InitSetting(asTabCloseOnMiddleClick, 'TabCloseOnMiddleClick', 0, True); InitSetting(asTabsInMultipleLines, 'TabsInMultipleLines', 0, True); - InitSetting(asTabIconsGrayscaleMode, 'TabIconsGrayscaleMode', 2); + InitSetting(asTabIconsGrayscaleMode, 'TabIconsGrayscaleMode', 1); InitSetting(asWarnUnsafeUpdates, 'WarnUnsafeUpdates', 0, True); InitSetting(asQueryWarningsMessage, 'QueryWarningsMessage', 0, True); InitSetting(asQueryGridLongSortRowNum, 'QueryGridLongSortRowNum', 10000);