Remove stray dbg statements

This commit is contained in:
Antonio Scandurra 2023-12-01 11:49:25 +01:00
parent 1b07fd6a70
commit 21d3ae603d
4 changed files with 3 additions and 7 deletions

View file

@ -2613,13 +2613,13 @@ impl Element for EditorElement {
move |known_dimensions, available_space, cx| {
editor_handle
.update(cx, |editor, cx| {
dbg!(compute_auto_height_layout(
compute_auto_height_layout(
editor,
max_lines,
max_line_number_width,
known_dimensions,
cx,
))
)
})
.unwrap_or_default()
},