Blender Git Commit Log
Git Commits -> Revision 0b24ca1
Revision 0b24ca1 by Campbell Barton (master) September 23, 2007, 22:02 (GMT) |
bugfix - running scriptlinks did not initialize the armature weakref dict, thanks for finding caedes! this bug is in 2.45 but can work around by setting it manually --- import sys as pysys try: pysys.modules['__main__'].__arm_weakrefs except: pysys.modules['__main__'].__arm_weakrefs = {} --- changed how draw modes work - when displaying textured meshes in editmode, only draw selected edges when "Edge Draw" is not enabled. this makes it easy to see the texture/mapping without edges getting in the way. This means editmode can draw like UV/Face mode did when "Draw Edges" was disabled. Also made the active vert/edge/face color themeable, still need to set the default to somthing other then pink. |
Commit Details:
Full Hash: 0b24ca19ff30175f74185da412e3d05bd73ee36e
SVN Revision: 12126
Parent Commit: 0096d18
Lines Changed: +70, -40
6 Modified Paths:
/source/blender/blenkernel/BKE_utildefines.h (+1, -0) (Diff)
/source/blender/include/BIF_resources.h (+1, -0) (Diff)
/source/blender/python/BPY_interface.c (+6, -1) (Diff)
/source/blender/src/drawobject.c (+60, -38) (Diff)
/source/blender/src/resources.c (+1, -0) (Diff)
/source/blender/src/space.c (+1, -1) (Diff)
/source/blender/include/BIF_resources.h (+1, -0) (Diff)
/source/blender/python/BPY_interface.c (+6, -1) (Diff)
/source/blender/src/drawobject.c (+60, -38) (Diff)
/source/blender/src/resources.c (+1, -0) (Diff)
/source/blender/src/space.c (+1, -1) (Diff)