Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'source/blender/editors/sculpt_paint/paint_hide.c')
-rw-r--r--source/blender/editors/sculpt_paint/paint_hide.c13
1 files changed, 5 insertions, 8 deletions
diff --git a/source/blender/editors/sculpt_paint/paint_hide.c b/source/blender/editors/sculpt_paint/paint_hide.c
index a3acce33683..43bb4d33212 100644
--- a/source/blender/editors/sculpt_paint/paint_hide.c
+++ b/source/blender/editors/sculpt_paint/paint_hide.c
@@ -355,16 +355,13 @@ void PAINT_OT_hide_show(struct wmOperatorType *ot)
static EnumPropertyItem action_items[] = {
{PARTIALVIS_HIDE, "HIDE", 0, "Hide", "Hide vertices"},
{PARTIALVIS_SHOW, "SHOW", 0, "Show", "Show vertices"},
- {0}};
+ {0, NULL, 0, NULL, NULL}};
static EnumPropertyItem area_items[] = {
- {PARTIALVIS_OUTSIDE, "OUTSIDE", 0, "Outside",
- "Hide or show vertices outside the selection"},
- {PARTIALVIS_INSIDE, "INSIDE", 0, "Inside",
- "Hide or show vertices inside the selection"},
- {PARTIALVIS_ALL, "ALL", 0, "All",
- "Hide or show all vertices"},
- {0}};
+ {PARTIALVIS_OUTSIDE, "OUTSIDE", 0, "Outside", "Hide or show vertices outside the selection"},
+ {PARTIALVIS_INSIDE, "INSIDE", 0, "Inside", "Hide or show vertices inside the selection"},
+ {PARTIALVIS_ALL, "ALL", 0, "All", "Hide or show all vertices"},
+ {0, NULL, 0, NULL, NULL}};
/* identifiers */
ot->name = "Hide/Show";