Skip to content

Commit 0d53ab2

Browse files
committed
Fix model manager haptic type and update debug APK
1 parent 5997a65 commit 0d53ab2

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

125 KB
Binary file not shown.

app/src/main/java/com/tryptz/neuron/ui/modelmanager/ModelManagerScreen.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ fun ModelManagerScreen(
146146
item {
147147
OutlinedCard(
148148
onClick = {
149-
haptic.performHapticFeedback(HapticFeedbackType.LightClick)
149+
haptic.performHapticFeedback(HapticFeedbackType.TextHandleMove)
150150
filePicker.launch(arrayOf("application/octet-stream", "*/*"))
151151
},
152152
modifier = Modifier.fillMaxWidth()
@@ -463,7 +463,7 @@ private fun LocalModelCard(
463463
modifier = Modifier.weight(1f)
464464
)
465465
OutlinedButton(onClick = {
466-
haptic.performHapticFeedback(HapticFeedbackType.LightClick)
466+
haptic.performHapticFeedback(HapticFeedbackType.TextHandleMove)
467467
onDelete()
468468
}) {
469469
Icon(Icons.Default.Delete, null, Modifier.size(16.dp))

0 commit comments

Comments
 (0)