Remove stray dbg statements
This commit is contained in:
parent
1b07fd6a70
commit
21d3ae603d
4 changed files with 3 additions and 7 deletions
|
@ -315,14 +315,11 @@ impl SelectionsCollection {
|
|||
|
||||
let line = display_map.layout_row(row, &text_layout_details);
|
||||
|
||||
dbg!("****START COL****");
|
||||
let start_col = line.closest_index_for_x(positions.start) as u32;
|
||||
if start_col < line_len || (is_empty && positions.start == line.width) {
|
||||
let start = DisplayPoint::new(row, start_col);
|
||||
dbg!("****END COL****");
|
||||
let end_col = line.closest_index_for_x(positions.end) as u32;
|
||||
let end = DisplayPoint::new(row, end_col);
|
||||
dbg!(start_col, end_col);
|
||||
|
||||
Some(Selection {
|
||||
id: post_inc(&mut self.next_selection_id),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue