Skip to content

Commit

Permalink
Fix UpdateShell::remove_face
Browse files Browse the repository at this point in the history
  • Loading branch information
hannobraun committed Nov 28, 2023
1 parent 92af928 commit e5420f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/fj-core/src/operations/update/shell.rs
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ impl UpdateShell for Shell {
let faces = self
.faces()
.iter()
.filter(|face| face.id() == handle.id())
.filter(|face| face.id() != handle.id())
.cloned();

Shell::new(faces)
Expand Down

0 comments on commit e5420f2

Please sign in to comment.