Spellchecker: spellchecker and dictionary icons are updated
@@ -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
|
||||
}
|
||||
|
||||
BIN
spellchecker/resources/icons/dictionary.png
Normal file
|
After Width: | Height: | Size: 199 B |
BIN
spellchecker/resources/icons/dictionary@2x.png
Normal file
|
After Width: | Height: | Size: 343 B |
BIN
spellchecker/resources/icons/dictionary@2x_dark.png
Normal file
|
After Width: | Height: | Size: 344 B |
BIN
spellchecker/resources/icons/dictionary_dark.png
Normal file
|
After Width: | Height: | Size: 200 B |
|
Before Width: | Height: | Size: 532 B After Width: | Height: | Size: 254 B |
|
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 431 B |
|
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 414 B |
|
Before Width: | Height: | Size: 532 B After Width: | Height: | Size: 254 B |
@@ -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
|
||||
|
||||