Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2018-05-07 16:30:23 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-05-07 22:40:51 +0300
commit036eb6f2f8150afe290edde5d46121aac933116f (patch)
tree7b3ee93b546fc4a0c11606e5cecf86652959d39a
parent50e28092d3db0496ed62aaeceef4aa1cb5bd5e6e (diff)
Extrude Widget: don't show when moving
-rw-r--r--source/blender/editors/mesh/editmesh_extrude.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/source/blender/editors/mesh/editmesh_extrude.c b/source/blender/editors/mesh/editmesh_extrude.c
index 51ee8223f0c..b85913a82f9 100644
--- a/source/blender/editors/mesh/editmesh_extrude.c
+++ b/source/blender/editors/mesh/editmesh_extrude.c
@@ -39,6 +39,7 @@
#include "BKE_context.h"
#include "BKE_report.h"
#include "BKE_editmesh.h"
+#include "BKE_global.h"
#include "RNA_define.h"
#include "RNA_access.h"
@@ -428,6 +429,9 @@ static void manipulator_mesh_extrude_refresh(const bContext *C, wmManipulatorGro
WM_manipulator_set_flag(man->axis_arrow, WM_MANIPULATOR_HIDDEN, true);
WM_manipulator_set_flag(man->axis_redo, WM_MANIPULATOR_HIDDEN, true);
+ if (G.moving) {
+ return;
+ }
struct TransformBounds tbounds;
if (!ED_transform_calc_manipulator_stats(C, false, &tbounds)) {
return;