[Bf-blender-cvs] [3aadf68b883] master: UI: Weight Modifiers Falloff: Use better step icon

Aaron Carlisle noreply at git.blender.org
Thu Jun 18 18:46:07 CEST 2020


Commit: 3aadf68b8836c9c238384b910cdb4490f8e06c65
Author: Aaron Carlisle
Date:   Thu Jun 18 12:44:03 2020 -0400
Branches: master
https://developer.blender.org/rB3aadf68b8836c9c238384b910cdb4490f8e06c65

UI: Weight Modifiers Falloff: Use better step icon

===================================================================

M	source/blender/makesrna/intern/rna_modifier.c

===================================================================

diff --git a/source/blender/makesrna/intern/rna_modifier.c b/source/blender/makesrna/intern/rna_modifier.c
index ffd9bb772cc..4d909ee2874 100644
--- a/source/blender/makesrna/intern/rna_modifier.c
+++ b/source/blender/makesrna/intern/rna_modifier.c
@@ -5021,7 +5021,7 @@ static void rna_def_modifier_weightvgedit(BlenderRNA *brna)
       {MOD_WVG_MAPPING_RANDOM, "RANDOM", ICON_RNDCURVE, "Random", ""},
       {MOD_WVG_MAPPING_STEP,
        "STEP",
-       ICON_NOCURVE /* Would need a better icon... */,
+       ICON_IPO_CONSTANT,
        "Median Step",
        "Map all values below 0.5 to 0.0, and all others to 1.0"},
       {0, NULL, 0, NULL, NULL},
@@ -5272,7 +5272,7 @@ static void rna_def_modifier_weightvgproximity(BlenderRNA *brna)
       {MOD_WVG_MAPPING_RANDOM, "RANDOM", ICON_RNDCURVE, "Random", ""},
       {MOD_WVG_MAPPING_STEP,
        "STEP",
-       ICON_NOCURVE /* Would need a better icon... */,
+       ICON_IPO_CONSTANT,
        "Median Step",
        "Map all values below 0.5 to 0.0, and all others to 1.0"},
       {0, NULL, 0, NULL, NULL},



More information about the Bf-blender-cvs mailing list