Merge branch 'blender-v4.5-release'

This commit is contained in:
Christoph Lendenfeld 2025-06-12 16:12:56 +02:00
commit f673acb6de
3 changed files with 2 additions and 2 deletions

View File

@ -27,7 +27,6 @@
#include "DEG_depsgraph_build.hh"
#include "ED_anim_api.hh"
#include "ED_keyframing.hh"
#include "ANIM_fcurve.hh"
@ -313,7 +312,6 @@ bool ui_but_anim_expression_create(uiBut *but, const char *str)
void ui_but_anim_autokey(bContext *C, uiBut *but, Scene *scene, float cfra)
{
ANIM_deselect_keys_in_animation_editors(C);
blender::animrig::autokeyframe_property(
C, scene, &but->rnapoin, but->rnaprop, but->rnaindex, cfra, true);
}

View File

@ -6809,6 +6809,7 @@ static bool proj_paint_add_slot(bContext *C, wmOperator *op)
DEG_id_tag_update(&ntree->id, 0);
DEG_id_tag_update(&ma->id, ID_RECALC_SHADING);
DEG_relations_tag_update(bmain);
ED_area_tag_redraw(CTX_wm_area(C));
ED_paint_proj_mesh_data_check(*scene, *ob, nullptr, nullptr, nullptr, nullptr);

View File

@ -3151,6 +3151,7 @@ static void rna_Node_tex_image_update(Main *bmain, Scene * /*scene*/, PointerRNA
BKE_ntree_update_tag_node_property(ntree, node);
BKE_main_ensure_invariants(*bmain, ntree->id);
DEG_relations_tag_update(bmain);
WM_main_add_notifier(NC_IMAGE, nullptr);
}