use 16x16 icons for framework types and library presentations

This commit is contained in:
Dmitry Jemerov
2016-02-15 16:06:58 +01:00
parent 68f411395a
commit 94fc58885a
4 changed files with 4 additions and 4 deletions
@@ -47,6 +47,6 @@ public class JSFrameworkType extends FrameworkTypeEx {
@NotNull @NotNull
@Override @Override
public Icon getIcon() { public Icon getIcon() {
return KotlinIcons.SMALL_LOGO_13; return KotlinIcons.SMALL_LOGO;
} }
} }
@@ -42,7 +42,7 @@ public class JSLibraryStdPresentationProvider extends LibraryPresentationProvide
@Nullable @Nullable
@Override @Override
public Icon getIcon(@Nullable LibraryProperties properties) { public Icon getIcon(@Nullable LibraryProperties properties) {
return KotlinIcons.SMALL_LOGO_13; return KotlinIcons.SMALL_LOGO;
} }
@Nullable @Nullable
@@ -47,6 +47,6 @@ public class JavaFrameworkType extends FrameworkTypeEx {
@NotNull @NotNull
@Override @Override
public Icon getIcon() { public Icon getIcon() {
return KotlinIcons.SMALL_LOGO_13; return KotlinIcons.SMALL_LOGO;
} }
} }
@@ -39,7 +39,7 @@ public class JavaRuntimePresentationProvider extends LibraryPresentationProvider
@Nullable @Nullable
@Override @Override
public Icon getIcon(@Nullable LibraryProperties properties) { public Icon getIcon(@Nullable LibraryProperties properties) {
return KotlinIcons.SMALL_LOGO_13; return KotlinIcons.SMALL_LOGO;
} }
@Nullable @Nullable