1
1

UI: Change tooltip for edit mode display shapekey

Change terminology from Apply to Display.
Apply suggests a destructive change to
the base mesh.

Display is also used in modifiers.
This commit is contained in:
2023-05-22 17:15:38 -06:00
parent 6609ca4593
commit c06e8f6549

View File

@@ -3798,14 +3798,14 @@ static void rna_def_object(BlenderRNA *brna)
/* shape keys */
prop = RNA_def_property(srna, "show_only_shape_key", PROP_BOOLEAN, PROP_NONE);
RNA_def_property_boolean_sdna(prop, NULL, "shapeflag", OB_SHAPE_LOCK);
RNA_def_property_ui_text(prop, "Shape Key Lock", "Only show the active shape at full value");
RNA_def_property_ui_text(prop, "Shape Key Lock", "Only show the active shape key at full value");
RNA_def_property_ui_icon(prop, ICON_UNPINNED, 1);
RNA_def_property_update(prop, 0, "rna_Object_internal_update_data");
prop = RNA_def_property(srna, "use_shape_key_edit_mode", PROP_BOOLEAN, PROP_NONE);
RNA_def_property_boolean_sdna(prop, NULL, "shapeflag", OB_SHAPE_EDIT_MODE);
RNA_def_property_ui_text(
prop, "Shape Key Edit Mode", "Apply shape keys in edit mode (for meshes only)");
prop, "Shape Key Edit Mode", "Display shape keys in edit mode (for meshes only)");
RNA_def_property_ui_icon(prop, ICON_EDITMODE_HLT, 0);
RNA_def_property_update(prop, 0, "rna_Object_internal_update_data");