Spellchecker: spellchecker and dictionary icons are updated

This commit is contained in:
Olga Strizhenko
2017-12-25 14:32:03 +03:00
parent 9647a3f80d
commit 39db5c917d
10 changed files with 5 additions and 2 deletions

View File

@@ -1,3 +1,6 @@
/*
* Copyright 2000-2017 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 icons;
import com.intellij.openapi.util.IconLoader;
@@ -13,5 +16,6 @@ public class SpellcheckerIcons {
return IconLoader.getIcon(path, SpellcheckerIcons.class);
}
public static final Icon Dictionary = load("/icons/dictionary.png"); // 16x16
public static final Icon Spellcheck = load("/icons/spellcheck.png"); // 16x16
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 199 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 343 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 344 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 200 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 532 B

After

Width:  |  Height:  |  Size: 254 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 431 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 414 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 532 B

After

Width:  |  Height:  |  Size: 254 B

View File

@@ -36,8 +36,7 @@ public class DictionaryFileType implements FileType {
@Nullable
@Override
public Icon getIcon() {
// TODO: request an icon DSGN-4790
return SpellcheckerIcons.Spellcheck;
return SpellcheckerIcons.Dictionary;
}
@Override