WIP: Snapping Redesign: Defaults | Navigation | Drawing | Removals #109062

Draft
Germano Cavalcante wants to merge 29 commits from mano-wii/blender:snap_defaults into main

When changing the target branch, be careful to rebase the branch in your fork to match. See documentation.
5 changed files with 12 additions and 12 deletions
Showing only changes of commit b048bbd5e8 - Show all commits

View File

@ -250,13 +250,10 @@ class NODE_OT_tree_path_parent(Operator):
class NodePanelOperator():
@classmethod
def poll(cls, context):
snode = context.space_data
if snode is None:
space = context.space_data
if not space or space.type != 'NODE_EDITOR' or not space.edit_tree:
return False
tree = snode.edit_tree
if tree is None:
return False
if tree.is_embedded_data:
if space.edit_tree.is_embedded_data:
return False
return True

View File

@ -559,7 +559,9 @@ void BKE_pchan_bbone_deform_segment_index(const struct bPoseChannel *pchan,
/* context.selected_pose_bones */
#define FOREACH_PCHAN_SELECTED_IN_OBJECT_BEGIN(_ob, _pchan) \
for (bPoseChannel *_pchan = (_ob)->pose->chanbase.first; _pchan; _pchan = _pchan->next) { \
for (bPoseChannel *_pchan = (bPoseChannel *)(_ob)->pose->chanbase.first; _pchan; \
_pchan = _pchan->next) \
{ \
if (PBONE_VISIBLE(((bArmature *)(_ob)->data), (_pchan)->bone) && \
((_pchan)->bone->flag & BONE_SELECTED)) \
{

View File

@ -184,8 +184,10 @@ static int select_random_exec(bContext *C, wmOperator *op)
grease_pencil.foreach_editable_drawing(
scene->r.cfra, [&](int drawing_index, GreasePencilDrawing &drawing) {
// TODO: Support different selection domains.
blender::ed::curves::select_random(
drawing.geometry.wrap(), ATTR_DOMAIN_POINT, blender::get_default_hash_2<int>(seed, drawing_index), ratio);
blender::ed::curves::select_random(drawing.geometry.wrap(),
ATTR_DOMAIN_POINT,
blender::get_default_hash_2<int>(seed, drawing_index),
ratio);
});
/* Use #ID_RECALC_GEOMETRY instead of #ID_RECALC_SELECT because it is handled as a generic

View File

@ -1628,8 +1628,7 @@ static void filelist_cache_previews_push(FileList *filelist, FileDirEntry *entry
* some time in heavy files, because otherwise for each missing preview and for each preview
* reload, we'd reopen the .blend to look for the preview. */
if ((entry->typeflag & FILE_TYPE_BLENDERLIB) &&
(entry->flags & FILE_ENTRY_BLENDERLIB_NO_PREVIEW))
{
(entry->flags & FILE_ENTRY_BLENDERLIB_NO_PREVIEW)) {
return;
}

View File

@ -11,8 +11,8 @@
#include "BKE_main.h"
#include "BLI_fileops.h"
#include "BLI_math.h"
#include "BLI_utildefines.h"
#include "BLI_string.h"
#include "BLI_utildefines.h"
#include "DNA_scene_types.h"
#include "DEG_depsgraph.h"