From 85bdb8b7874d9bedebe417083febbd2deb8f2bce Mon Sep 17 00:00:00 2001 From: "Pavel V. Talanov" Date: Wed, 19 Sep 2018 19:25:24 +0200 Subject: [PATCH] Do not show run gutters for native #KT-26851 Fixed --- .../jetbrains/kotlin/ide/konan/NativeIdePlatformKindTooling.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/idea/idea-native/src/org/jetbrains/kotlin/ide/konan/NativeIdePlatformKindTooling.kt b/idea/idea-native/src/org/jetbrains/kotlin/ide/konan/NativeIdePlatformKindTooling.kt index 263750807a8..5ee4d96c99a 100644 --- a/idea/idea-native/src/org/jetbrains/kotlin/ide/konan/NativeIdePlatformKindTooling.kt +++ b/idea/idea-native/src/org/jetbrains/kotlin/ide/konan/NativeIdePlatformKindTooling.kt @@ -40,7 +40,7 @@ class NativeIdePlatformKindTooling : IdePlatformKindTooling() { override fun getTestIcon(declaration: KtNamedDeclaration, descriptor: DeclarationDescriptor): Icon? = null - override fun acceptsAsEntryPoint(function: KtFunction) = true + override fun acceptsAsEntryPoint(function: KtFunction) = false } object NativeLibraryKind : PersistentLibraryKind("kotlin.native"), KotlinLibraryKind {