Fix #116339: "Show Hidden Objects" operator's options missing #119153

Merged
Philipp Oeser merged 1 commits from lichtwerk/blender:116339 into blender-v4.1-release 2024-03-07 11:31:50 +01:00
1 changed files with 1 additions and 2 deletions

View File

@ -317,8 +317,7 @@ void OBJECT_OT_hide_view_clear(wmOperatorType *ot)
/* flags */
ot->flag = OPTYPE_REGISTER | OPTYPE_UNDO;
PropertyRNA *prop = RNA_def_boolean(ot->srna, "select", true, "Select", "");
RNA_def_property_flag(prop, PropertyFlag(PROP_SKIP_SAVE | PROP_HIDDEN));
RNA_def_boolean(ot->srna, "select", true, "Select", "");
}
static int object_hide_view_set_exec(bContext *C, wmOperator *op)