From bc58e151b5117f6202f4b0362c66a591510b9ed3 Mon Sep 17 00:00:00 2001 From: khaykov Date: Thu, 18 Jul 2024 13:14:33 -0500 Subject: [PATCH] Fixed lint. --- .../main/kotlin/org/wordpress/aztec/EnhancedMovementMethod.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aztec/src/main/kotlin/org/wordpress/aztec/EnhancedMovementMethod.kt b/aztec/src/main/kotlin/org/wordpress/aztec/EnhancedMovementMethod.kt index 5ea763d7a..dd04a899c 100644 --- a/aztec/src/main/kotlin/org/wordpress/aztec/EnhancedMovementMethod.kt +++ b/aztec/src/main/kotlin/org/wordpress/aztec/EnhancedMovementMethod.kt @@ -47,7 +47,7 @@ object EnhancedMovementMethod : ArrowKeyMovementMethod() { val off = layout.getOffsetForHorizontal(line, x.toFloat()) // This handles the case when the task list checkbox is clicked - if (taskListClickHandlerRef.get()?.handleTaskListClick(text, off, x, widget.totalPaddingStart) == true){ + if (taskListClickHandlerRef.get()?.handleTaskListClick(text, off, x, widget.totalPaddingStart) == true) { return true }