Updated compose to 1.7.0-dev to fix cursor hovering issues

In compose 1.6.0 the pointer would be changed to the default after some rendering-heavy operation or combining crossfade animations with pointerHoverIcon  in the inner composables.

This version introduces another where click events are dismissed if the cursor has moved even slightly.

Related to:
Youtrack issue: https://youtrack.jetbrains.com/issue/CMP-5069/1.7.0-alpha01-Moving-after-initiating-a-click-cancels-it

Compose Multiplatform PR: https://github.com/JetBrains/compose-multiplatform-core/pull/1445

Google gerrit patch: https://android-review.googlesource.com/c/platform/frameworks/support/+/3170403
This commit is contained in:
Abdelilah El Aissaoui 2024-08-02 23:22:20 +02:00
parent ba13fec4a2
commit 94536acf40
No known key found for this signature in database
GPG Key ID: 7587FC860F594869

View File

@ -12,7 +12,7 @@ plugins {
kotlin("jvm") version "2.0.0"
kotlin("plugin.serialization") version "2.0.0"
id("com.google.devtools.ksp") version "2.0.0-1.0.21"
id("org.jetbrains.compose") version "1.6.11"
id("org.jetbrains.compose") version "1.7.0-dev1750"
id("org.jetbrains.kotlin.plugin.compose") version "2.0.0"
}