use regular Kotlin icon to represent Kotlin run configurations, leave old LAUNCH icon only for REPL

#KT-11041 Fixed
This commit is contained in:
Dmitry Jemerov
2016-02-19 15:53:45 +01:00
parent 94fc58885a
commit ad48ff6a9e
4 changed files with 4 additions and 4 deletions
@@ -38,7 +38,7 @@ class KotlinRunLineMarkerContributor : RunLineMarkerContributor() {
}
if (detector.isMain(function)) {
return RunLineMarkerContributor.Info(KotlinIcons.LAUNCH, null, ExecutorAction.getActions(0))
return RunLineMarkerContributor.Info(KotlinIcons.SMALL_LOGO_13, null, ExecutorAction.getActions(0))
}
return null
@@ -26,7 +26,7 @@ public final class K2JSRunConfigurationType extends ConfigurationTypeBase {
}
public K2JSRunConfigurationType() {
super("K2JSConfigurationType", "Kotlin (JavaScript - experimental)", "Kotlin to JavaScript configuration", KotlinIcons.LAUNCH);
super("K2JSConfigurationType", "Kotlin (JavaScript - experimental)", "Kotlin to JavaScript configuration", KotlinIcons.SMALL_LOGO_13);
addFactory(new K2JSConfigurationFactory());
}
@@ -28,7 +28,7 @@ public class JetRunConfigurationType extends ConfigurationTypeBase {
}
public JetRunConfigurationType() {
super("JetRunConfigurationType", KotlinLanguage.NAME, KotlinLanguage.NAME, KotlinIcons.LAUNCH);
super("JetRunConfigurationType", KotlinLanguage.NAME, KotlinLanguage.NAME, KotlinIcons.SMALL_LOGO_13);
addFactory(new JetRunConfigurationFactory(this));
}
@@ -24,7 +24,7 @@ class KotlinStandaloneScriptRunConfigurationType : ConfigurationTypeBase(
"KotlinStandaloneScriptRunConfigurationType",
"Kotlin script",
"Run Kotlin script",
KotlinIcons.LAUNCH
KotlinIcons.SMALL_LOGO_13
) {
init {
addFactory(Factory(this))