Merge remote-tracking branch 'origin/blender-v2.83-release'
This commit is contained in:
Submodule release/datafiles/locale updated: 1d9b8b2ffa...0fd21a7cc3
Submodule release/scripts/addons updated: 47a32a5370...9a9832d5d7
@@ -705,7 +705,7 @@ void BLI_box_pack_2d_fixedarea(ListBase *boxes, int width, int height, ListBase
|
||||
LISTBASE_FOREACH_MUTABLE (FixedSizeBoxPack *, box, boxes) {
|
||||
LISTBASE_FOREACH (FixedSizeBoxPack *, space, &spaces) {
|
||||
/* Skip this space if it's too small. */
|
||||
if (box->w > space->w || box->h > space->w) {
|
||||
if (box->w > space->w || box->h > space->h) {
|
||||
continue;
|
||||
}
|
||||
|
||||
|
@@ -345,14 +345,14 @@ static void rna_def_dopesheet(BlenderRNA *brna)
|
||||
prop = RNA_def_property(srna, "show_only_selected", PROP_BOOLEAN, PROP_NONE);
|
||||
RNA_def_property_boolean_sdna(prop, NULL, "filterflag", ADS_FILTER_ONLYSEL);
|
||||
RNA_def_property_ui_text(
|
||||
prop, "Only Selected", "Only include channels relating to selected objects and data");
|
||||
prop, "Only Show Selected", "Only include channels relating to selected objects and data");
|
||||
RNA_def_property_ui_icon(prop, ICON_RESTRICT_SELECT_OFF, 0);
|
||||
RNA_def_property_update(prop, NC_ANIMATION | ND_ANIMCHAN | NA_EDITED, NULL);
|
||||
|
||||
prop = RNA_def_property(srna, "show_hidden", PROP_BOOLEAN, PROP_NONE);
|
||||
RNA_def_property_boolean_sdna(prop, NULL, "filterflag", ADS_FILTER_INCL_HIDDEN);
|
||||
RNA_def_property_ui_text(
|
||||
prop, "Display Hidden", "Include channels from objects/bone that are not visible");
|
||||
prop, "Show Hidden", "Include channels from objects/bone that are not visible");
|
||||
RNA_def_property_ui_icon(prop, ICON_OBJECT_HIDDEN, 0);
|
||||
RNA_def_property_update(prop, NC_ANIMATION | ND_ANIMCHAN | NA_EDITED, NULL);
|
||||
|
||||
@@ -368,8 +368,9 @@ static void rna_def_dopesheet(BlenderRNA *brna)
|
||||
/* Debug Filtering Settings */
|
||||
prop = RNA_def_property(srna, "show_only_errors", PROP_BOOLEAN, PROP_NONE);
|
||||
RNA_def_property_boolean_sdna(prop, NULL, "filterflag", ADS_FILTER_ONLY_ERRORS);
|
||||
RNA_def_property_ui_text(
|
||||
prop, "Show Errors", "Only include F-Curves and drivers that are disabled or have errors");
|
||||
RNA_def_property_ui_text(prop,
|
||||
"Only Show Errors",
|
||||
"Only include F-Curves and drivers that are disabled or have errors");
|
||||
RNA_def_property_ui_icon(prop, ICON_ERROR, 0);
|
||||
RNA_def_property_update(prop, NC_ANIMATION | ND_ANIMCHAN | NA_EDITED, NULL);
|
||||
|
||||
|
@@ -1754,7 +1754,7 @@ static void rna_def_fluid_domain_settings(BlenderRNA *brna)
|
||||
"Caches velocities of mesh vertices. These will be used "
|
||||
"(automatically) when rendering with motion blur enabled");
|
||||
RNA_def_property_clear_flag(prop, PROP_ANIMATABLE);
|
||||
RNA_def_property_update(prop, NC_OBJECT | ND_MODIFIER, "rna_Fluid_domain_reset");
|
||||
RNA_def_property_update(prop, NC_OBJECT | ND_MODIFIER, "rna_Fluid_meshcache_reset");
|
||||
|
||||
prop = RNA_def_property(srna, "mesh_particle_radius", PROP_FLOAT, PROP_NONE);
|
||||
RNA_def_property_range(prop, 0.0, 10.0);
|
||||
|
Reference in New Issue
Block a user