diff --git a/gradle.properties b/gradle.properties index fb75fd8..885170f 100644 --- a/gradle.properties +++ b/gradle.properties @@ -3,4 +3,4 @@ kotlin.code.style=official # version kotlinVersion=1.3.70 -korgeVersion=1.5.6.1 \ No newline at end of file +korgeVersion=1.10.0.0 \ No newline at end of file diff --git a/src/main/kotlin/com/soywiz/korge/intellij/editor/KorgeBaseFileEditorProvider.kt b/src/main/kotlin/com/soywiz/korge/intellij/editor/KorgeBaseFileEditorProvider.kt index 7c03f37..6f05993 100644 --- a/src/main/kotlin/com/soywiz/korge/intellij/editor/KorgeBaseFileEditorProvider.kt +++ b/src/main/kotlin/com/soywiz/korge/intellij/editor/KorgeBaseFileEditorProvider.kt @@ -155,7 +155,7 @@ abstract class KorgeBaseFileEditorProvider : com.intellij.openapi.fileEditor.Fil // mouth.tex = lips[e.lip] ?: views.transparentTexture //} - sceneView.uiTextButton(text = "Replay").apply { + sceneView.textButton(text = "Replay").apply { width = 80.0 height = 24.0 x = 0.0 @@ -165,7 +165,7 @@ abstract class KorgeBaseFileEditorProvider : com.intellij.openapi.fileEditor.Fil } } - sceneView.uiTextButton(text = "Stop").apply { + sceneView.textButton(text = "Stop").apply { width = 80.0 height = 24.0 x = 80.0 @@ -197,7 +197,7 @@ abstract class KorgeBaseFileEditorProvider : com.intellij.openapi.fileEditor.Fil sceneView += animationLibrary.createMainTimeLine() } - sceneView.uiTextButton(text = "Masks").apply { + sceneView.textButton(text = "Masks").apply { width = 80.0 height = 24.0 x = 0.0 @@ -216,7 +216,7 @@ abstract class KorgeBaseFileEditorProvider : com.intellij.openapi.fileEditor.Fil } sceneView -= loading - sceneView.uiTextButton(text = "Open").apply { + sceneView.textButton(text = "Open").apply { width = 80.0 height = 24.0 x = views.virtualWidth - width