Skip to content

Commit

Permalink
fix mouse pointers
Browse files Browse the repository at this point in the history
  • Loading branch information
teh-cmc committed Feb 10, 2025
1 parent 8c5c139 commit 6537d0b
Show file tree
Hide file tree
Showing 10 changed files with 18 additions and 18 deletions.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion crates/viewer/re_view_spatial/tests/transform_clamping.rs
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ fn run_view_ui_and_save_snapshot(
let raw_input = harness.input_mut();
raw_input
.events
.push(egui::Event::PointerMoved((150.0, 150.0).into()));
.push(egui::Event::PointerMoved((100.0, 100.0).into()));
raw_input.events.push(egui::Event::MouseWheel {
unit: egui::MouseWheelUnit::Line,
delta: egui::Vec2::UP * 2.0,
Expand Down
2 changes: 1 addition & 1 deletion crates/viewer/re_view_spatial/tests/transform_hierarchy.rs
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ fn run_view_ui_and_save_snapshot(
let raw_input = harness.input_mut();
raw_input
.events
.push(egui::Event::PointerMoved((150.0, 150.0).into()));
.push(egui::Event::PointerMoved((100.0, 100.0).into()));
raw_input.events.push(egui::Event::MouseWheel {
unit: egui::MouseWheelUnit::Line,
delta: egui::Vec2::UP * 3.0,
Expand Down

0 comments on commit 6537d0b

Please sign in to comment.