diff --git a/experimental/lwjgl-integration/src/main/kotlin/GlfwEvents.kt b/experimental/lwjgl-integration/src/main/kotlin/GlfwEvents.kt index fd340c3b5e..92cbd7763b 100644 --- a/experimental/lwjgl-integration/src/main/kotlin/GlfwEvents.kt +++ b/experimental/lwjgl-integration/src/main/kotlin/GlfwEvents.kt @@ -15,11 +15,6 @@ import java.awt.event.MouseEvent @OptIn(ExperimentalComposeUiApi::class) fun ComposeScene.subscribeToGLFWEvents(windowHandle: Long) { glfwSetMouseButtonCallback(windowHandle) { _, button, action, mods -> - when (action) { - GLFW_PRESS -> PointerEventType.Press - GLFW_RELEASE -> PointerEventType.Release - else -> PointerEventType.Unknown - } sendPointerEvent( position = glfwGetCursorPos(windowHandle), eventType = when (action) { @@ -121,4 +116,4 @@ private fun getAwtMods(windowHandle: Long): Int { if (glfwGetKey(windowHandle, GLFW_KEY_LEFT_ALT) == GLFW_PRESS || glfwGetKey(windowHandle, GLFW_KEY_RIGHT_ALT) == GLFW_PRESS) awtMods = awtMods or InputEvent.ALT_DOWN_MASK return awtMods -} \ No newline at end of file +}