forked from blender/blender
me-main #1
@ -3478,7 +3478,7 @@ def km_animation_channels(params):
|
|||||||
# Selection.
|
# Selection.
|
||||||
*_template_items_select_actions(params, "anim.channels_select_all"),
|
*_template_items_select_actions(params, "anim.channels_select_all"),
|
||||||
("anim.channels_select_box", {"type": 'B', "value": 'PRESS'}, None),
|
("anim.channels_select_box", {"type": 'B', "value": 'PRESS'}, None),
|
||||||
("anim.channels_select_box", {"type": 'LEFTMOUSE', "value": 'CLICK_DRAG'},
|
("anim.channels_select_box", {"type": 'LEFTMOUSE', "value": 'CLICK_DRAG'},
|
||||||
{"properties": [("extend", False)]}),
|
{"properties": [("extend", False)]}),
|
||||||
("anim.channels_select_box", {"type": 'LEFTMOUSE', "value": 'CLICK_DRAG', "shift": True},
|
("anim.channels_select_box", {"type": 'LEFTMOUSE', "value": 'CLICK_DRAG', "shift": True},
|
||||||
{"properties": [("extend", True)]}),
|
{"properties": [("extend", True)]}),
|
||||||
|
@ -2329,8 +2329,8 @@ class USERPREF_PT_experimental_new_features(ExperimentalPanel, Panel):
|
|||||||
({"property": "use_override_templates"},
|
({"property": "use_override_templates"},
|
||||||
("blender/blender/issues/73318",
|
("blender/blender/issues/73318",
|
||||||
"Milestone 4")),
|
"Milestone 4")),
|
||||||
({"property": "use_new_volume_nodes"},
|
({"property": "use_new_volume_nodes"},
|
||||||
("blender/blender/issues/103248",
|
("blender/blender/issues/103248",
|
||||||
"#103248")),
|
"#103248")),
|
||||||
),
|
),
|
||||||
)
|
)
|
||||||
|
@ -3568,7 +3568,8 @@ static bool do_mesh_box_select(ViewContext *vc,
|
|||||||
}
|
}
|
||||||
if (ts->selectmode & SCE_SELECT_EDGE) {
|
if (ts->selectmode & SCE_SELECT_EDGE) {
|
||||||
/* Does both use_zbuf and non-use_zbuf versions (need screen cos for both) */
|
/* Does both use_zbuf and non-use_zbuf versions (need screen cos for both) */
|
||||||
struct BoxSelectUserData_ForMeshEdge cb_data {};
|
struct BoxSelectUserData_ForMeshEdge cb_data {
|
||||||
|
};
|
||||||
cb_data.data = &data;
|
cb_data.data = &data;
|
||||||
cb_data.esel = use_zbuf ? esel : nullptr;
|
cb_data.esel = use_zbuf ? esel : nullptr;
|
||||||
cb_data.backbuf_offset = use_zbuf ? DRW_select_buffer_context_offset_for_object_elem(
|
cb_data.backbuf_offset = use_zbuf ? DRW_select_buffer_context_offset_for_object_elem(
|
||||||
|
@ -10782,7 +10782,8 @@ static void def_geo_string_to_curves(StructRNA *srna)
|
|||||||
RNA_def_property_enum_sdna(prop, NULL, "overflow");
|
RNA_def_property_enum_sdna(prop, NULL, "overflow");
|
||||||
RNA_def_property_enum_items(prop, rna_node_geometry_string_to_curves_overflow_items);
|
RNA_def_property_enum_items(prop, rna_node_geometry_string_to_curves_overflow_items);
|
||||||
RNA_def_property_enum_default(prop, GEO_NODE_STRING_TO_CURVES_MODE_OVERFLOW);
|
RNA_def_property_enum_default(prop, GEO_NODE_STRING_TO_CURVES_MODE_OVERFLOW);
|
||||||
RNA_def_property_ui_text(prop, "Textbox Overflow", "Handle the text behavior when it doesn't fit in the text boxes");
|
RNA_def_property_ui_text(
|
||||||
|
prop, "Textbox Overflow", "Handle the text behavior when it doesn't fit in the text boxes");
|
||||||
RNA_def_property_update(prop, NC_NODE | NA_EDITED, "rna_Node_socket_update");
|
RNA_def_property_update(prop, NC_NODE | NA_EDITED, "rna_Node_socket_update");
|
||||||
|
|
||||||
prop = RNA_def_property(srna, "align_x", PROP_ENUM, PROP_NONE);
|
prop = RNA_def_property(srna, "align_x", PROP_ENUM, PROP_NONE);
|
||||||
|
Loading…
Reference in New Issue
Block a user