未验证 提交 558c29cd 编写于 作者: J Joey Robichaud 提交者: GitHub

Don't make color changes when in high contrast mode (#33529)

上级 2644e05c
......@@ -8,6 +8,7 @@
using System.ComponentModel.Composition;
using System.Linq;
using System.Runtime.InteropServices;
using System.Windows;
using EnvDTE;
using Microsoft.CodeAnalysis.Classification;
using Microsoft.CodeAnalysis.Editor;
......@@ -96,6 +97,12 @@ private void UpdateThemeColors()
return;
}
// We do not want to make any changes while in high contrast mode.
if (SystemParameters.HighContrast)
{
return;
}
var currentThemeId = GetThemeId();
// Get the preview feature flag value.
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册