Changeset View
Changeset View
Standalone View
Standalone View
source/blender/windowmanager/intern/wm_operator_props.c
| Context not available. | |||||
| prop = RNA_def_boolean(ot->srna, "wait_for_input", true, "Wait for Input", ""); | prop = RNA_def_boolean(ot->srna, "wait_for_input", true, "Wait for Input", ""); | ||||
| RNA_def_property_flag(prop, PROP_HIDDEN | PROP_SKIP_SAVE); | RNA_def_property_flag(prop, PROP_HIDDEN | PROP_SKIP_SAVE); | ||||
| prop = RNA_def_boolean(ot->srna, "mesh_select_through", true, "Mesh Select Through", ""); | |||||
| RNA_def_property_flag(prop, PROP_HIDDEN | PROP_SKIP_SAVE); | |||||
| } | } | ||||
| void WM_operator_properties_border_to_rcti(struct wmOperator *op, rcti *rect) | void WM_operator_properties_border_to_rcti(struct wmOperator *op, rcti *rect) | ||||
| Context not available. | |||||
| PropertyRNA *prop; | PropertyRNA *prop; | ||||
| prop = RNA_def_collection_runtime(ot->srna, "path", &RNA_OperatorMousePath, "Path", ""); | prop = RNA_def_collection_runtime(ot->srna, "path", &RNA_OperatorMousePath, "Path", ""); | ||||
| RNA_def_property_flag(prop, PROP_HIDDEN | PROP_SKIP_SAVE); | RNA_def_property_flag(prop, PROP_HIDDEN | PROP_SKIP_SAVE); | ||||
| prop = RNA_def_boolean(ot->srna, "mesh_select_through", true, "Mesh Select Through", ""); | |||||
| RNA_def_property_flag(prop, PROP_HIDDEN | PROP_SKIP_SAVE); | |||||
| } | } | ||||
| void WM_operator_properties_gesture_straightline(wmOperatorType *ot, int cursor) | void WM_operator_properties_gesture_straightline(wmOperatorType *ot, int cursor) | ||||
| Context not available. | |||||
| prop = RNA_def_boolean(ot->srna, "wait_for_input", true, "Wait for Input", ""); | prop = RNA_def_boolean(ot->srna, "wait_for_input", true, "Wait for Input", ""); | ||||
| RNA_def_property_flag(prop, PROP_HIDDEN | PROP_SKIP_SAVE); | RNA_def_property_flag(prop, PROP_HIDDEN | PROP_SKIP_SAVE); | ||||
| prop = RNA_def_boolean(ot->srna, "mesh_select_through", true, "Mesh Select Through", ""); | |||||
| RNA_def_property_flag(prop, PROP_HIDDEN | PROP_SKIP_SAVE); | |||||
| } | } | ||||
| void WM_operator_properties_mouse_select(wmOperatorType *ot) | void WM_operator_properties_mouse_select(wmOperatorType *ot) | ||||
| Context not available. | |||||