提交 51f2531b 编写于 作者: M Martin Aeschlimann

Minimap should pick up new colors when changing themes. Fixes #36443

上级 f58de870
......@@ -191,7 +191,7 @@ export class TextMateService implements ITextMateService {
let s1 = r1.settings;
let s2 = r2.settings;
if (s1 && s2) {
if (s1.fontStyle !== s2.fontStyle || s1.foreground !== s2.foreground) {
if (s1.fontStyle !== s2.fontStyle || s1.foreground !== s2.foreground || s1.background !== s2.background) {
return true;
}
} else if (!s1 || !s2) {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册