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>2005-03-28 18:00:49 +0400
committerTon Roosendaal <ton@blender.org>2005-03-28 18:00:49 +0400
commitc3abdd9608841ffa12b0aa02dc92e56f088d2608 (patch)
tree68dd0fe5aa5461d5304b0b05783fc4885ba8309a /source/blender/blenloader/intern
parentcdd7e935669a8c5106d31dacce7f3d24fcddae55 (diff)
Cleanup of widget code;
- made more general calls with args for drawing types - made it accept transparency for all modes (used while transform now) - added argument to detect 'combo' mode, gave offsets to translate/scale handles in combos. - added 'pie chart' on view-aligned rotate for widget - made trackball for rotate widget rt==4 behave compatible - removed redundant code for 'ghosting'
Diffstat (limited to 'source/blender/blenloader/intern')
-rw-r--r--source/blender/blenloader/intern/readfile.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenloader/intern/readfile.c b/source/blender/blenloader/intern/readfile.c
index dcf7658ab97..8708671e87b 100644
--- a/source/blender/blenloader/intern/readfile.c
+++ b/source/blender/blenloader/intern/readfile.c
@@ -4646,7 +4646,7 @@ static void do_versions(Main *main)
for (sl= sa->spacedata.first; sl; sl= sl->next) {
if(sl->spacetype==SPACE_VIEW3D) {
View3D *v3d= (View3D *)sl;
- if(v3d->twtype==0) v3d->twtype= V3D_MANIPULATOR_TRANSLATE;
+ if(v3d->twtype==0) v3d->twtype= V3D_MANIP_TRANSLATE;
}
}
}