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>2006-11-27 18:23:21 +0300
committerTon Roosendaal <ton@blender.org>2006-11-27 18:23:21 +0300
commitcdced41fb9d666e02aae968d75176dd99be46771 (patch)
tree4b69d0b467147b9857908c16d71934f2c6db23a4 /source/blender/makesdna/DNA_view3d_types.h
parent9971fdb5c14b0759afcf77ddc978d0b70153b6f9 (diff)
Bugfix #5313
3D Window "Transform properties" was using bad globals for buttons, this caused things not work with multiple 3d windows open, and (in editmode) set one panel to "Local" and the other to "Global". Also: - added undo push for moving bone to a layer - protected Ikey for posemode to not show a menu without selection
Diffstat (limited to 'source/blender/makesdna/DNA_view3d_types.h')
-rw-r--r--source/blender/makesdna/DNA_view3d_types.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/source/blender/makesdna/DNA_view3d_types.h b/source/blender/makesdna/DNA_view3d_types.h
index 11af418a59a..c174c975252 100644
--- a/source/blender/makesdna/DNA_view3d_types.h
+++ b/source/blender/makesdna/DNA_view3d_types.h
@@ -136,9 +136,11 @@ typedef struct View3D {
short flag, flag2;
- short gridsubdiv; // Number of subdivisions in the grid between each highlighted grid line
+ short gridsubdiv; /* Number of subdivisions in the grid between each highlighted grid line */
short pad2[2];
+
+ void *properties_storage; /* Nkey panel stores stuff here, not in file */
} View3D;