Blender Git Commit Log

All Blender Git commits.

Page: 353 / 8462

August 9, 2021, 06:00 (GMT)
Fix slicing with negative indices

Negative indices that remained negative after adding the sequence length
caused incorrect slicing.

With the default scene for example:

bpy.context.scene.objects[-4:2]

Gave a different result to:

tuple(bpy.context.scene.objects)[-4:2]

Clamp indices above zero so loops that step forward works as intended.
August 9, 2021, 05:59 (GMT)
Fix fix invalid index use for edit-mesh laplacian smooth

Only vertex indices were ensured to be correct.
August 9, 2021, 05:57 (GMT)
Fix T90477: Cursor vertex snapping not working in UV editor

`t->obedit_type` is read to indicate if we are in uv edit mode.

Also fixes a crash introduced in {rBdd14ea18190ff27082009f73a556569a43377a71}.
August 9, 2021, 05:05 (GMT)
Cleanup: return True/False from gpencil toolbar function

This was returning None/False which could cause problems in the future.
August 9, 2021, 05:03 (GMT)
Cleanup: indentation
August 9, 2021, 05:03 (GMT)
Cleanup: use 'cls' for class methods first argument
August 9, 2021, 05:02 (GMT)
Cleanup: remove redundant imports

The module was importing it's own functions.
August 9, 2021, 04:31 (GMT)
Fix text object inserting multiple characters with a selection

`bpy.ops.font.text_insert(text="multiple characters")` wasn't working.

When the text is selected does not correctly insert multiple characters.

- When the text was selected from left to right,
the cursor only move one position next to the selected text.
- When the text is selected from right to left,
a part of the selected text remain.

Ref D12161
August 9, 2021, 03:53 (GMT)
Fix incorrect position of disks in hinge constraint
August 9, 2021, 03:42 (GMT)
Cleanup: Panels for drawing constraints
August 9, 2021, 03:07 (GMT)
USD IO: fix compiler warnings and errors

Fixed warnings and errors for linux and darwin
builds. Also fixed copyright date in
usd_light_convert.cc.
August 9, 2021, 02:45 (GMT)
Cleanup: grease pencil app-template versioning

- Remove check for screens being None as this would raise an error.
- Replace loop over `area.spaces` with `area.spaces.active`.
- Loop over grease pencil data directly instead of accessing
through the scenes objects.
- Split versioning into functions.
- Use `update_factory_startup_*` prefix for function names
as this isn't versioning existing files.
August 9, 2021, 02:01 (GMT)
Cleanup: avoid using context in versioning code

Also extract versioning into a function that makes it's purpose clear.
August 9, 2021, 01:35 (GMT)
Merge branch 'master' into soc-2021-uv-editor-improvements-edge-selection
August 9, 2021, 01:01 (GMT)
Merge branch 'master' into soc-2021-uv-editor-improvements
August 8, 2021, 21:30 (GMT)
Edge selection support for Edge ring and loop select operator

* Adds edge selection support for edge ring and edge loop select operator
* Selecting face loops in the UV editor is now done through the loop
select operator
August 8, 2021, 20:09 (GMT)
UI: Show Mask Display Options Conistently

This commit makes the display options for mask only show in the header for the clip and image editors.
Prior to this change they would display in the header for the clip editor and in the sidebar for the image editors.
August 8, 2021, 17:30 (GMT)
UI: Sequencer: Fix placement of display options in sequencer & preview mode

This commit does two things, first it removes the proportional editing tool settings.
This is not accessible code and is has not been used since the grease pencil/annotations changes in 2.8.

Second, this patch reorders the if statements so that the display options are always shown on the rightside.

Reviewed By: antoniov

Differential Revision: https://developer.blender.org/D12163
August 8, 2021, 17:29 (GMT)
Cleanup: Remove stale/dead code

This seems to be really old code from 2.4 or earlier.
I was unable to find when it was removed gitk and git blame both couldnt find anything.
However, it is safe to say that this code is long gone.
August 8, 2021, 16:56 (GMT)
Merge branch 'master' into soc-2021-curve-fillet
By: Miika HämäläinenLast update: Nov-07-2014 14:18MiikaHweb | 2003-2021