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:
authorTon Roosendaal <ton@blender.org>2004-11-07 21:20:44 +0300
committerTon Roosendaal <ton@blender.org>2004-11-07 21:20:44 +0300
commitac0bb78a2029b40e9e85697d4b822197b9906bd5 (patch)
tree5d139a9344c22f5cc03cdde804d0d7caf43ce861 /source/blender/src/editview.c
parent16951736882773a383f04eb2809fa9b341bef9c2 (diff)
Tweaked the force_draw() calls, to allow headerprint() to work while
doing a transform. Solves bug reported by Brecht about this.
Diffstat (limited to 'source/blender/src/editview.c')
-rw-r--r--source/blender/src/editview.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/src/editview.c b/source/blender/src/editview.c
index 838ddde1771..d1891cde9d0 100644
--- a/source/blender/src/editview.c
+++ b/source/blender/src/editview.c
@@ -1444,7 +1444,7 @@ void mesh_selectionCB(int selecting, Object *editobj, short *mval, float rad)
EM_selectmode_flush();
draw_sel_circle(0, 0, 0, 0, 0); /* signal */
- force_draw();
+ force_draw(0);
}
@@ -1510,7 +1510,7 @@ void nurbscurve_selectionCB(int selecting, Object *editobj, short *mval, float r
nu= nu->next;
}
draw_sel_circle(0, 0, 0, 0, 0); /* signal */
- force_draw();
+ force_draw(0);
}
@@ -1539,7 +1539,7 @@ void lattice_selectionCB(int selecting, Object *editobj, short *mval, float rad)
bp++;
}
draw_sel_circle(0, 0, 0, 0, 0); /* signal */
- force_draw();
+ force_draw(0);
}
/** Callbacks for selection in Editmode */