Anim: Properties Dialog Titles #117741

Merged
Harley Acheson merged 2 commits from Harley/blender:AnimationProps into main 2024-02-02 17:12:43 +01:00
2 changed files with 4 additions and 2 deletions

View File

@ -1168,7 +1168,8 @@ static int move_to_collection_regular_invoke(bContext *C, wmOperator *op)
static int move_to_new_collection_invoke(bContext *C, wmOperator *op)
{
return WM_operator_props_dialog_popup(C, op, 200);
return WM_operator_props_dialog_popup(
C, op, 200, IFACE_("Move to New Collection"), IFACE_("Move"));
}
static int move_to_collection_invoke(bContext *C, wmOperator *op, const wmEvent * /*event*/)

View File

@ -237,7 +237,8 @@ static int pose_calculate_paths_invoke(bContext *C, wmOperator *op, const wmEven
/* show popup dialog to allow editing of range... */
/* FIXME: hard-coded dimensions here are just arbitrary. */
return WM_operator_props_dialog_popup(C, op, 270);
return WM_operator_props_dialog_popup(
C, op, 270, IFACE_("Calculate Paths for the Selected Bones"), IFACE_("Calculate"));
}
/**