Skip to content

Commit

Permalink
Make argument name more explicit
Browse files Browse the repository at this point in the history
  • Loading branch information
hannobraun committed Oct 25, 2022
1 parent da6845f commit f120f22
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/fj-viewer/src/viewer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ impl Viewer {
/// Draw the graphics
pub fn draw(
&mut self,
scale_factor: f32,
pixels_per_point: f32,
status: &mut StatusReport,
egui_input: egui::RawInput,
) {
Expand All @@ -145,7 +145,7 @@ impl Viewer {
if let Err(err) = self.renderer.draw(
&self.camera,
&self.draw_config,
scale_factor,
pixels_per_point,
&mut self.gui,
) {
warn!("Draw error: {}", err);
Expand Down

0 comments on commit f120f22

Please sign in to comment.