- Outliner: new items (on first show) come up collapsed now

- Outliner: click on Armature data goes in posemode

And long wanted, and found out is just a threeliner in code:

- Posemode: click-select-drag or grab-gesture switches to 'rotate'
  automatic when no bone can be translated.
This commit is contained in:
2004-10-06 20:44:11 +00:00
parent 5a918d339b
commit 25c52c19e9
3 changed files with 15 additions and 4 deletions

View File

@@ -5045,6 +5045,12 @@ void transform(int mode)
figure_bone_nocalc(G.obpose);
figure_pose_updating();
make_trans_bones((char)mode);
if(mode=='g' && tottrans==0) {
mode= 'r';
make_trans_bones((char)mode);
}
break;
}
}