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:
authorJohnny Matthews <johnny.matthews@gmail.com>2005-07-13 23:39:01 +0400
committerJohnny Matthews <johnny.matthews@gmail.com>2005-07-13 23:39:01 +0400
commit64af8d0ced696fd1ab3dbb452e1dda2a43843f6f (patch)
tree127d153d6a7db4db451c4bec1b5ffe5f9ddb55c2 /source/blender/src/editmesh_loop.c
parentcb694458a68b0ee4b80cdbea6f74243bdb8c04f7 (diff)
If loopcut was cancelled, the screen was not refreshed to get rid of the last preview line.
Thanks to Desoto for reporting.
Diffstat (limited to 'source/blender/src/editmesh_loop.c')
-rw-r--r--source/blender/src/editmesh_loop.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/source/blender/src/editmesh_loop.c b/source/blender/src/editmesh_loop.c
index ca1985ba5af..0842eea47cb 100644
--- a/source/blender/src/editmesh_loop.c
+++ b/source/blender/src/editmesh_loop.c
@@ -266,6 +266,13 @@ void CutEdgeloop(int numcuts){
}
}
}
+ scrarea_do_windraw(curarea);
+ screen_swapbuffers();
+#ifndef __APPLE__
+ if(G.vd->drawtype>OB_WIRE && (G.vd->flag & V3D_ZBUF_SELECT)) {
+ backdrawview3d(0);
+ }
+#endif
if(cancel){
return;
}