Skip to content

Commit

Permalink
Removed unused logs and function
Browse files Browse the repository at this point in the history
  • Loading branch information
robothaver committed Jun 2, 2024
1 parent 5b4aae2 commit 1b40005
Showing 1 changed file with 0 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,18 +35,7 @@ class CanvasEventHandler(
}
}

fun dragStart(offset: Offset) {
println("DRAG STARTED")
isTouchEventActive.value = true
if (activeTool.value == Tools.Pen) {
canvasController.addNewPath(
getOffset(offset)
)
}
}

fun drag(change: Offset, previousPosition: Offset) {
println("DRAGGING")
when (activeTool.value) {
Tools.Eraser -> {
selectedPosition.value = change
Expand Down

0 comments on commit 1b40005

Please sign in to comment.