Revision 2c0a3cf by Campbell Barton February 5, 2013, 05:39 (GMT) |
fix [#34113] operator_menu_enum() - Tooltip not showing descriptions second fix from this report which makes the menu show tips even when 'bl_property' isn't set. |
Revision ec97183 by Campbell Barton February 5, 2013, 05:09 (GMT) |
add python api docstring for 'bpy.types.Operator.bl_property' |
Revision a8601a5 by Campbell Barton February 5, 2013, 04:41 (GMT) |
fix [#34113] operator_menu_enum() - Tooltip not showing descriptions Python wasn't able to set 'OperatorType.prop', which is used by uiButGetStrInfo(). add 'bl_property' to python operators which is assigned to OperatorType.prop when registering. (api docs coming next) |
Revision 936a38c by Campbell Barton February 5, 2013, 02:28 (GMT) |
fix for valgrind warning - using uninitialized variable. Though in practice it didn't cause any problems. Getting the 'CTX_data_main' while un-fullscreen'ing a space would do a context lookup into the view3d_context which had an uninitialized layer. since view3d_context doesn't hold a 'main' member it never did anything but cleaner not to do context lookups while modifying the view. - noticed while checking on a real bug :) |
Revision e9ef8d6 by Sergej Reich February 4, 2013, 23:50 (GMT) |
rigidbody: Avoid always making passive objects kinematic It's only needed when they're being transformed. Also deactivate passive objects after transformation so they don't keep acitvating deactivated objects. Fixes issues with using "start deactivated". |
Revision ace88b6 by Sergej Reich February 4, 2013, 23:50 (GMT) |
rigidbody: Fix [#34108] Rigid body with no polygons crashes blender Fall back to using box shape in case creating shape from mesh fails. |
Revision 9d8ec8b by Sergej Reich February 4, 2013, 23:50 (GMT) |
rigidbody: Don't allow collision shape to be animated While it's fun to be able to change collison shape while the simulation is running it can cause crashes in some cases. |
Revision ae27a54 by Sergej Reich February 4, 2013, 23:50 (GMT) |
rigidbody: Fix [#34106] Deleting an object with Bullet Constraint crashes Blender Constraints are deleted before rigid bodies so need to check if constraint exists in case both the constraint and ridid body are on the same object. |
Revision 55ff9ec by Bastien Montagne February 4, 2013, 19:12 (GMT) |
The usual UI messages tweaks... |
Revision 13499c6 by Thomas Dinges February 4, 2013, 18:50 (GMT) |
Cycles UI Code: * Some more variable cleanup for old texture output. |
Revision ea72338 by Monique Dewanchand February 4, 2013, 17:38 (GMT) |
updated fix for [#34089] Crash opening file containing translation node saved before rev54235 some of our artists work to much on trunk :) Especially our beloved Pablo Vazquez. We increased the blender file sub-version for checking if translate nodes needed to be updated. Happy blending. |
Revision fd2934b by Thomas Dinges February 4, 2013, 17:01 (GMT) |
Fix for [#34110] Displacement modifier + Procedural texture + Cycles -> 'NoneType' object has no attribute 'texture_mapping' * Issue was caused by a remaining part from the "OUTPUT_TEXTURE" node UI code, from the original Cycles branch. |
Revision a6f5a72 by Thomas Dinges February 4, 2013, 16:50 (GMT) |
Compile fix for r54300, setFactorXY function does not return a value. |
Revision 9d71368 by Campbell Barton February 4, 2013, 16:20 (GMT) |
code cleanup: warnings |
Revision 03687b7 by Brecht Van Lommel February 4, 2013, 16:12 (GMT) |
Compositor "Relative" option for Translate node, same as for other nodes this makes it possible to specify an offset relative to the render resolution (so 0.5 is half the image rather than giving the number of pixels). It's a bit late but it's a trivial change and needed for 4k mango render. |
Revision 7c9d993 by Brecht Van Lommel February 4, 2013, 16:12 (GMT) |
Fix cycles intersection issue with overlapping faces on windows 32 bit and CPU without SSE3 support, due to 80 bit precision float register being used for one bounding box but not the one next to it. |
Revision 52303db by Brecht Van Lommel February 4, 2013, 16:12 (GMT) |
Fix window fullscreen crash when building for Mac OS X 10.5. |
Revision 1c1fb24 by Campbell Barton February 4, 2013, 15:48 (GMT) |
fix for rangefunc being unused for int & int array. also cast strlen to an int to avoid overflow. |
Revision 42bbd7d by Campbell Barton February 4, 2013, 13:50 (GMT) |
fix for memory leak selecting dope sheet summary with mask/grease-pencil data. |
Revision 932be98 by Campbell Barton February 4, 2013, 13:17 (GMT) |
fix [#34107] Grease pencil crash after box select |
|