Update name of variable

This commit is contained in:
Hanno Braun 2025-03-28 18:51:59 +01:00
parent 7e47b2c868
commit d9fa21ce86

View File

@ -70,8 +70,8 @@ impl ApplicationHandler for DisplayState {
.or_insert(window) .or_insert(window)
}; };
if let Some(mesh) = self.tri_mesh.take() { if let Some(tri_mesh) = self.tri_mesh.take() {
window.handle_model_update(mesh); window.handle_model_update(tri_mesh);
} }
} }