Skip to content

Commit

Permalink
rm clippy::lint
Browse files Browse the repository at this point in the history
  • Loading branch information
Kl4rry committed Dec 9, 2024
1 parent 80b31f3 commit ef0c25f
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion crates/ferrite-gui/src/backend.rs
Original file line number Diff line number Diff line change
Expand Up @@ -335,7 +335,6 @@ impl Backend for WgpuBackend {
let line = &mut self.cells[line as usize];
line[column as usize] = cell.clone();
let cell_width = cell.symbol().width();
#[allow(clippy::comparison_chain)]
if cell_width > 1 {
if let Some(next_cell) = &mut line.get_mut(column as usize + 1) {
next_cell.reset();
Expand Down

0 comments on commit ef0c25f

Please sign in to comment.