Skip to content

Commit

Permalink
Fix loading 3d mouse params from config (#6703)
Browse files Browse the repository at this point in the history
Since this seems a trivial enough change, I haven't done any local building/testing. Let me know if you need anything like that from me anyways.
  • Loading branch information
bo0tzz committed Sep 9, 2024
1 parent adb2d33 commit f31a9f8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/slic3r/GUI/Mouse3DController.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -406,8 +406,8 @@ void Mouse3DController::load_config(const AppConfig &appconfig)
params.zoom.scale = Params::DefaultZoomScale * std::clamp(zoom_speed, 0.1, 10.0);
params.swap_yz = swap_yz;
params.invert_x = invert_x;
params.invert_y = invert_x;
params.invert_z = invert_x;
params.invert_y = invert_y;
params.invert_z = invert_z;
params.invert_yaw = invert_yaw;
params.invert_pitch = invert_pitch;
params.invert_roll = invert_roll;
Expand Down

0 comments on commit f31a9f8

Please sign in to comment.