Use 16px logo instead of 13px for run configurations

This commit is contained in:
Alexander Podkhalyuzin
2019-01-25 13:45:00 +03:00
parent 63cec94dbc
commit 4f4099796d
2 changed files with 2 additions and 2 deletions
@@ -28,7 +28,7 @@ public class KotlinRunConfigurationType extends ConfigurationTypeBase {
}
public KotlinRunConfigurationType() {
super("JetRunConfigurationType", KotlinLanguage.NAME, KotlinLanguage.NAME, KotlinIcons.SMALL_LOGO_13);
super("JetRunConfigurationType", KotlinLanguage.NAME, KotlinLanguage.NAME, KotlinIcons.SMALL_LOGO);
addFactory(new KotlinRunConfigurationFactory(this));
}
@@ -24,7 +24,7 @@ class KotlinStandaloneScriptRunConfigurationType : ConfigurationTypeBase(
"KotlinStandaloneScriptRunConfigurationType",
"Kotlin script",
"Run Kotlin script",
KotlinIcons.SMALL_LOGO_13
KotlinIcons.SMALL_LOGO
) {
init {
addFactory(Factory(this))