1
0
Fork 0

Merge pull request #63690 from snailrhymer/rotation-snap-fix

Fix default values for rotation snapping in canvas_item_editor_plugin.cpp
This commit is contained in:
Rémi Verschelde 2022-07-31 00:20:07 +02:00 committed by GitHub
commit a32f84dda9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -214,8 +214,8 @@ private:
int primary_grid_steps = 8;
int grid_step_multiplier = 0;
real_t snap_rotation_step = 0.0;
real_t snap_rotation_offset = Math::deg2rad(15.0);
real_t snap_rotation_step = Math::deg2rad(15.0);
real_t snap_rotation_offset = 0.0;
real_t snap_scale_step = 0.1f;
bool smart_snap_active = false;
bool grid_snap_active = false;