Commit be0a0c32 authored by Konstantin Bulenkov's avatar Konstantin Bulenkov
Browse files

make installEditorScheme() protected to support temporary editor schemes

parent 9ee95010
Branches unavailable Tags unavailable
No related merge requests found
Showing with 2 additions and 2 deletions
+2 -2
// Copyright 2000-2018 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. // Copyright 2000-2019 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file.
package com.intellij.ide.ui.laf; package com.intellij.ide.ui.laf;
import com.intellij.ide.ui.UITheme; import com.intellij.ide.ui.UITheme;
...@@ -60,7 +60,7 @@ public class UIThemeBasedLookAndFeelInfo extends UIManager.LookAndFeelInfo { ...@@ -60,7 +60,7 @@ public class UIThemeBasedLookAndFeelInfo extends UIManager.LookAndFeelInfo {
return myInitialised; return myInitialised;
} }
private void installEditorScheme() { protected void installEditorScheme() {
String name = myTheme.getEditorSchemeName(); String name = myTheme.getEditorSchemeName();
if (name != null) { if (name != null) {
EditorColorsManager cm = EditorColorsManager.getInstance(); EditorColorsManager cm = EditorColorsManager.getInstance();
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment