From 36607319fd87743c472efe5b99b074ff5d74b88c Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Tue, 15 Aug 2023 15:45:54 +0200 Subject: [PATCH] fixed models::rotation parameter name --- models.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/models.cpp b/models.cpp index 6e11c31c..197deb19 100644 --- a/models.cpp +++ b/models.cpp @@ -942,9 +942,9 @@ EX namespace models { dialog::addBoolItem_choice("all directional lands", models::do_rotate, 2, 'D'); }; - param_matrix(models::rotation.v2, "rotation", 2)->editable("conformal rotation", "", 'r')->set_extra(setrot); - param_matrix(models::rotation.v3, "rotation3", 3)->editable("conformal rotation in 3D", "", 'r')->set_extra(setrot); - addsaver(models::do_rotate, "conformal rotation mode", 1); + param_matrix(models::rotation.v2, "rotation", 2)->editable("auto rotation", "", 'r')->set_extra(setrot); + param_matrix(models::rotation.v3, "rotation3", 3)->editable("auto rotation in 3D", "", 'r')->set_extra(setrot); + param_i(models::do_rotate, "auto_rotation_mode", 1); param_f(pconf.halfplane_scale, "hp", "halfplane scale", 1);