Cleanup: style
This commit is contained in:
@@ -88,7 +88,7 @@ public:
|
||||
const bPoseChannel *, pchan, &object->pose->chanbase)
|
||||
{
|
||||
LISTBASE_FOREACH (
|
||||
const bConstraint *, constraint, &pchan->constraints)
|
||||
const bConstraint *, constraint, &pchan->constraints)
|
||||
{
|
||||
BLI_ghash_insert(contraint_to_pchan_map_,
|
||||
const_cast<bConstraint *>(constraint),
|
||||
@@ -109,7 +109,7 @@ protected:
|
||||
|
||||
/* ***************************** Node Identifier **************************** */
|
||||
|
||||
RNANodeIdentifier::RNANodeIdentifier()
|
||||
RNANodeIdentifier::RNANodeIdentifier()
|
||||
: id(NULL),
|
||||
type(NodeType::UNDEFINED),
|
||||
component_name(""),
|
||||
@@ -143,7 +143,8 @@ RNANodeQuery::RNANodeQuery(Depsgraph *depsgraph)
|
||||
{
|
||||
}
|
||||
|
||||
RNANodeQuery::~RNANodeQuery() {
|
||||
RNANodeQuery::~RNANodeQuery()
|
||||
{
|
||||
BLI_ghash_free(id_data_map_, NULL, ghash_id_data_free_func);
|
||||
}
|
||||
|
||||
|
||||
@@ -2077,11 +2077,13 @@ static void gp_paint_initstroke(tGPsdata *p, eGPencil_PaintModes paintmode, Deps
|
||||
if (p->gpl == NULL) {
|
||||
p->gpl = BKE_gpencil_layer_addnew(p->gpd, DATA_("GP_Layer"), true);
|
||||
|
||||
if (p->custom_color[3])
|
||||
if (p->custom_color[3]) {
|
||||
copy_v3_v3(p->gpl->color, p->custom_color);
|
||||
}
|
||||
}
|
||||
if ((paintmode != GP_PAINTMODE_ERASER) &&
|
||||
(p->gpl->flag & GP_LAYER_LOCKED)) {
|
||||
(p->gpl->flag & GP_LAYER_LOCKED))
|
||||
{
|
||||
p->status = GP_STATUS_ERROR;
|
||||
if (G.debug & G_DEBUG)
|
||||
printf("Error: Cannot paint on locked layer\n");
|
||||
|
||||
@@ -580,7 +580,8 @@ static int edbm_bevel_modal(bContext *C, wmOperator *op, const wmEvent *event)
|
||||
|
||||
/* When activated from toolbar, need to convert leftmouse release to confirm */
|
||||
if (etype == LEFTMOUSE && eval == KM_RELEASE &&
|
||||
RNA_boolean_get(op->ptr, "release_confirm")) {
|
||||
RNA_boolean_get(op->ptr, "release_confirm"))
|
||||
{
|
||||
etype = EVT_MODAL_MAP;
|
||||
eval = BEV_MODAL_CONFIRM;
|
||||
}
|
||||
|
||||
@@ -186,7 +186,7 @@ static void rna_def_light_energy(StructRNA *srna, bool distant)
|
||||
{
|
||||
PropertyRNA *prop;
|
||||
|
||||
if(distant) {
|
||||
if (distant) {
|
||||
/* Distant light strength has no unit defined, it's proportional to
|
||||
* Watt/m^2 and is not sensitive to scene unit scale. */
|
||||
prop = RNA_def_property(srna, "energy", PROP_FLOAT, PROP_NONE);
|
||||
|
||||
Reference in New Issue
Block a user