Skip to content

Commit

Permalink
chore: Remove typo println debug info in Input.
Browse files Browse the repository at this point in the history
  • Loading branch information
huacnlee committed Jan 26, 2025
1 parent e658aee commit 8d0773f
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions crates/ui/src/input/input.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1030,7 +1030,6 @@ impl TextInput {
// Click in the this line but not in the text, move cursor to the end of the line.
// The fallback index is saved in Err from `index_for_position` method.
index += index_result.unwrap_err();
println!("------------------ 2");
break;
} else if line.len() == 0 {
// empty line
Expand All @@ -1043,7 +1042,6 @@ impl TextInput {
break;
}
} else {
println!("------------------ 3 {}", line.len());
index += line.len();
}

Expand Down

0 comments on commit 8d0773f

Please sign in to comment.