Skip to content

Commit 8d0773f

Browse files
committed
chore: Remove typo println debug info in Input.
1 parent e658aee commit 8d0773f

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

crates/ui/src/input/input.rs

-2
Original file line numberDiff line numberDiff line change
@@ -1030,7 +1030,6 @@ impl TextInput {
10301030
// Click in the this line but not in the text, move cursor to the end of the line.
10311031
// The fallback index is saved in Err from `index_for_position` method.
10321032
index += index_result.unwrap_err();
1033-
println!("------------------ 2");
10341033
break;
10351034
} else if line.len() == 0 {
10361035
// empty line
@@ -1043,7 +1042,6 @@ impl TextInput {
10431042
break;
10441043
}
10451044
} else {
1046-
println!("------------------ 3 {}", line.len());
10471045
index += line.len();
10481046
}
10491047

0 commit comments

Comments
 (0)