Merge branch 'master' into blender2.8
This commit is contained in:
@@ -559,6 +559,9 @@ void fsmenu_read_system(struct FSMenu *fsmenu, int read_bookmarks)
|
||||
if (pathString == NULL || !CFStringGetCString(pathString, line, sizeof(line), kCFStringEncodingUTF8))
|
||||
continue;
|
||||
|
||||
/* Add end slash for consistency with other platforms */
|
||||
BLI_add_slash(line);
|
||||
|
||||
/* Exclude "all my files" as it makes no sense in blender fileselector */
|
||||
/* Exclude "airdrop" if wlan not active as it would show "" ) */
|
||||
if (!strstr(line, "myDocuments.cannedSearch") && (*line != '\0')) {
|
||||
|
||||
@@ -294,7 +294,7 @@ static void copy_vert_no(const BVHTreeFromMeshType *meshdata, const int index, f
|
||||
case SNAP_MESH:
|
||||
{
|
||||
BVHTreeFromMesh *data = meshdata->userdata;
|
||||
const MVert *vert = data->vert;
|
||||
const MVert *vert = data->vert + index;
|
||||
normal_short_to_float_v3(r_no, vert->no);
|
||||
break;
|
||||
}
|
||||
@@ -1302,6 +1302,7 @@ static bool snapDerivedMesh(
|
||||
}
|
||||
}
|
||||
}
|
||||
/* SCE_SNAP_MODE_VERTEX or SCE_SNAP_MODE_EDGE */
|
||||
else {
|
||||
const ARegion *ar = sctx->v3d_data.ar;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user