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>2003-10-12 04:42:09 +0400
committerTon Roosendaal <ton@blender.org>2003-10-12 04:42:09 +0400
commita9c694d6c56a867583b56ee47418667137ac92ec (patch)
tree074f8e4d2ccb93baea25f7c4e1204fdda5e4928b /source/blender/src/editcurve.c
parent06f29795df62fb5ebbc3dd6163af458da657e056 (diff)
- rewrote the panel align heuristics.
leftmost/top panel now always at same location, so switching button 'main contextes' works consistantly - fixed some more events to make sure Panels update when editing - preview render panel now is 320 wide, just for getting the space filled! - error in preview render matrix, which caused unpredictable drawing errors Bedtime! -Ton-
Diffstat (limited to 'source/blender/src/editcurve.c')
-rw-r--r--source/blender/src/editcurve.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/src/editcurve.c b/source/blender/src/editcurve.c
index e04a4355ce2..3e2d4119e72 100644
--- a/source/blender/src/editcurve.c
+++ b/source/blender/src/editcurve.c
@@ -3768,7 +3768,7 @@ void add_primitiveCurve(int stype)
/* if no obedit: new object and enter editmode */
if(G.obedit==0) {
- add_object(OB_CURVE);
+ add_object_draw(OB_CURVE);
base_init_from_view3d(BASACT, G.vd);
G.obedit= BASACT->object;
@@ -3812,7 +3812,7 @@ void add_primitiveNurb(int type)
/* if no obedit: new object and enter editmode */
if(G.obedit==0) {
- add_object(OB_SURF);
+ add_object_draw(OB_SURF);
base_init_from_view3d(BASACT, G.vd);
G.obedit= BASACT->object;