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
AgeCommit message (Collapse)Author
2019-01-03Fix some inconsistencies in object visibility/selectability tests.Brecht Van Lommel
2019-01-03Fix T60107: gizmos should not show for unselectable objects.Brecht Van Lommel
2019-01-03Fix T58870: submenus don't open for some specific mouse positions.Brecht Van Lommel
2019-01-03Fix accidental changes to default preferences in recent startup.blend commit.Brecht Van Lommel
2019-01-03Fix T60056: Make Duplicates Real with Keep Hierarchy does nothingPhilipp Oeser
Caused by rB36ca072375deea4803df4681716c1d3224095e07 [one instance of `DEG_get_original_object` was neccesary, the other one breaks getting the parent in `BLI_ghash_lookup`] Reviewed by: brecht Differential Revision: https://developer.blender.org/D4154
2019-01-03GP: Include Lasso eraser in Fill and PrimitivesAntonioya
This option allows to delete sections using Ctrl+Alt.
2019-01-03Fix T59527: Segment fault changing layer visibility and onion skinAntonioya
In some situation when the layer is hidden, the onion skin must be disabled too, because the material is not available.
2019-01-03Cleanup: indentationCampbell Barton
2019-01-03DRW: remove INDEX4 normal flippingCampbell Barton
Added in 531e5ad49a03763 but I couldn't find a case when it's needed, It's not needed for solid-mode viewport drawing for eg.
2019-01-03Revert "GPU: add negated normal conversion functions"Campbell Barton
This reverts commit d28b29d428cc7fc7eb29f2302b5d80fc63a9f870.
2019-01-03Fix T59842: Curve flat shading doesn't workCampbell Barton
Calculate flat shaded normals when creating batch cache. Note that 2.7x was using vertex normals as flat-face normals.
2019-01-03GPU: add negated normal conversion functionsCampbell Barton
Saves having to negate to a temporary variable.
2019-01-03Cleanup: variable nameCampbell Barton
2019-01-03Cleanup: preprocessor indentationCampbell Barton
2019-01-03Transform: default shrink/fatten even-offset to falseCampbell Barton
Changed for 2.8 but this cases spikes for some geometry, see: T59968
2019-01-03Fix new material for pinned objectsCampbell Barton
Grease pencil check was using active object.
2019-01-03Merge branch 'blender2.7'Campbell Barton
2019-01-03Fix T60014: material link pref ignoredCampbell Barton
The PreferencesEdit.material_link only worked for adding slots, adding an initial new material didn't respect the preference.
2019-01-02Fix (unreported): unpredictable crashes when it is done snap after automerge.mano-wii
The `em->tottri` of an evaluated object can be different from the actual amount of looptris.
2019-01-02Fix T58859: render with compositor does not render other scenes.Brecht Van Lommel
2019-01-02Fix wrong alpha blending for datablock preview icons.Brecht Van Lommel
2019-01-02Merge branch 'blender2.7'Brecht Van Lommel
2019-01-02Fix T60061: Cycles OSL point density not working.Brecht Van Lommel
Add override keywords so we can detect when the function definitions change.
2019-01-02Fix T60037: single column layout breaks file browse button.Brecht Van Lommel
2019-01-02Fix T59063: operator search menu loses background in some cases.Brecht Van Lommel
2019-01-02Fix wrong grease pencil shader FX usage of object location.Brecht Van Lommel
It should use the evaluated object location, and not add any unnecessary dependency on geometry data.
2019-01-02Fix T59792: Cycles crash rendering motion pass with motion blur enabled.Brecht Van Lommel
2019-01-02Fix T60051: Wrong stroke projection when viewmode set to FrontAntonioya
As the z-depth is calculated using the internal drawing, if we use the front mode the z-depth is wrong. The Front or Back mode must be used only for display, but not for calculation.
2019-01-02Fix T60046: crash with Cycles viewport render and particle info node.Brecht Van Lommel
This code was not correctly ported to 2.8.
2019-01-02Fix T60031: Joining two Grease Pencilobjects sometimes crashesAntonioya
The drawing cache was not set as dirty and drawing engine used old data.
2019-01-02Fixes and edits to studio light operatorsCampbell Barton
- Remove pathlib use (was converting to/from string with no real advantage). - Use user_resource(..., create=True) to ensure the path exists. - Pass full path to BKE_studiolight_create, don't add extension after. - Fix 'sl' filtering glob and move from ui code to operator. - Fix string copy length.
2019-01-02Cleanup: py-gpu error checksCampbell Barton
Move gpu initialization checks to the start of each function instead of mixing with argument parsing.
2019-01-02Revert file rename from T59773 fixCampbell Barton
Mixing file rename with other changes should be avoided. Using 'module_py_api' convention here is in keeping with imbuf, idprop, blf & bmesh. No reason for gpu to have a different convention.
2019-01-02Fix T59773: Raise exception if the gpu module is used in backgound mode.mano-wii
Instead of crashing, an error message is displayed if a function of the gpu module is called without a GPU context. Reviewers: brecht, campbellbarton, JacquesLucke, mont29 Subscribers: abdelmatinboulbayam, amir.shehata Differential Revision: https://developer.blender.org/D4143
2019-01-02Fix poll function for SelectPattern operatorDalai Felinto
Note this is also broken in 2.7x. This is not a big deal since the operator is exposed in the correct menus. But some users were accessing it via the search menu which would lead to issues.
2019-01-02Fix T60030: Select pattern fails with pose bonesDalai Felinto
The original comment in the file was not acknoledging pose bones could be tacked here as well (my fault since I should not have trusted the comments and read the code intead). Problem introduced on aeb8e81f2741.
2019-01-02Fix T60060: Corrective Smooth Modifier binding process is broken.Bastien Montagne
Same as with the other modifiers' binding ops, those need to be performed outside of regular depsgraph eval.
2019-01-02GP: Cleanup pad to _padAntonioya
2019-01-02UI: correct sequencer icon in add menuCampbell Barton
2019-01-02UI: Show shade smooth/flat in curve context menuCampbell Barton
2019-01-02Fix T59886: Missing transform gizmo updateCampbell Barton
2019-01-023D View: use grid & all axes in axis-viewsCampbell Barton
Matches 2.7x behavior.
2019-01-02UI: add scale option for template_icon_view buttonCampbell Barton
The existing scale option only changed the scale if icons in the popup.
2019-01-02Cleanup: use RNA icon instead of passing as an argCampbell Barton
2019-01-02Cleanup: indentation, namingCampbell Barton
Use rna naming conventions for unit-settings callbacks.
2019-01-02PyRNA: enum no longer returns first item when the value isn't foundCampbell Barton
This hides errors & makes it confusing to debug mistakes when the enum items aren't correct. Return an empty string instead.
2019-01-02Fix image editor tool-settings missing from topbarCampbell Barton
2019-01-02Cleanup: rename manipulator referencesCampbell Barton
2019-01-02Cleanup: use '_pad' in DNACampbell Barton
Convention used elsewhere, has advantage pad vars don't autocomplete with other vars beginning w/ 'p'.
2019-01-02Cleanup: rename target_weight -> weightCampbell Barton
Match name of mesh weight paint.