From 46d1a799862fc7b49c835577caafe04857a3c97b Mon Sep 17 00:00:00 2001 From: WMJ Date: Sat, 29 Dec 2018 09:24:40 +0800 Subject: [PATCH] - Fixed incorrect association of Smart Bar options page and Syntax Highlight feature option --- Codist/Options/ConfigPage.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Codist/Options/ConfigPage.cs b/Codist/Options/ConfigPage.cs index d9446f56..b8594bff 100644 --- a/Codist/Options/ConfigPage.cs +++ b/Codist/Options/ConfigPage.cs @@ -177,7 +177,7 @@ sealed class CSharpScrollbarMarker : ConfigPage [Guid("DA4EC893-7203-489C-9BCA-037D2686F89B")] sealed class SmartBar : ConfigPage { - protected override Features Feature => Features.SyntaxHighlight; + protected override Features Feature => Features.SmartBar; protected override IWin32Window Window => Control ?? (Control = new SmartBarPage(this)); }