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:
authorBrecht Van Lommel <brechtvanlommel@pandora.be>2013-05-11 00:17:18 +0400
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2013-05-11 00:17:18 +0400
commit50b270ca362e0bac8c20dd9e8226e7b23a550d20 (patch)
tree5e12de2231ca91b8d18cee2d27d232f535b37c88 /source/blender/editors
parent5374eb8e1c5ec7fa096398ad94501771817e2463 (diff)
Fix #35292: edge slide slow with big image in image editor. Avoid redrawing the
image editor during slide like other operators, instant feedback can be nice but is not so important here and we don't have notifiers fine grained enough to avoid full redraws.
Diffstat (limited to 'source/blender/editors')
-rw-r--r--source/blender/editors/transform/transform.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/source/blender/editors/transform/transform.c b/source/blender/editors/transform/transform.c
index 989525fffb8..dedf4d30f70 100644
--- a/source/blender/editors/transform/transform.c
+++ b/source/blender/editors/transform/transform.c
@@ -491,9 +491,6 @@ static void viewRedrawForce(const bContext *C, TransInfo *t)
else
WM_event_add_notifier(C, NC_OBJECT | ND_TRANSFORM, NULL);
- if (t->mode == TFM_EDGE_SLIDE && (t->settings->uvcalc_flag & UVCALC_TRANSFORM_CORRECT))
- WM_event_add_notifier(C, NC_GEOM | ND_DATA, NULL);
-
/* for realtime animation record - send notifiers recognised by animation editors */
// XXX: is this notifier a lame duck?
if ((t->animtimer) && IS_AUTOKEY_ON(t->scene))