Object: select objects when revealing

Matches behavior for other modes.
This commit is contained in:
Campbell Barton
2018-12-05 12:05:47 +11:00
parent baf599610a
commit 5c59244238

View File

@@ -202,7 +202,7 @@ void OBJECT_OT_hide_view_clear(wmOperatorType *ot)
/* flags */
ot->flag = OPTYPE_REGISTER | OPTYPE_UNDO;
PropertyRNA *prop = RNA_def_boolean(ot->srna, "select", false, "Select", "");
PropertyRNA *prop = RNA_def_boolean(ot->srna, "select", true, "Select", "");
RNA_def_property_flag(prop, PROP_SKIP_SAVE | PROP_HIDDEN);
}