Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoshua Leung <aligorith@gmail.com>2009-10-08 15:29:27 +0400
committerJoshua Leung <aligorith@gmail.com>2009-10-08 15:29:27 +0400
commit5ce33cf2bd2def709c9124cc6a7e538e388f1d62 (patch)
treef0697abbe702f4f7775ea9f4e7e26ab371992109 /source/blender/editors/animation/drivers.c
parent208d57323e2c1db5432aceebab7216f545410d74 (diff)
A few fixes:
* Loading old files didn't initialise the new rotation variables properly * Fixed some errors with the newly added operator for copying RNA-paths for properties * Auto-keyframing now correctly refreshes animation editors after adding keyframes. Made the keyingsets code send notifiers again, but now using the newly added WM_main_event_add() (thanks Brecht) * A few UI tweaks again for animation stuff (timeline, keyingsets UI)
Diffstat (limited to 'source/blender/editors/animation/drivers.c')
-rw-r--r--source/blender/editors/animation/drivers.c13
1 files changed, 6 insertions, 7 deletions
diff --git a/source/blender/editors/animation/drivers.c b/source/blender/editors/animation/drivers.c
index 7a457548623..bf3fd0f4cf1 100644
--- a/source/blender/editors/animation/drivers.c
+++ b/source/blender/editors/animation/drivers.c
@@ -565,7 +565,7 @@ void ANIM_OT_paste_driver_button (wmOperatorType *ot)
}
-/* Paste Driver Button Operator ------------------------ */
+/* Copy to Clipboard Button Operator ------------------------ */
static int copy_clipboard_button_exec(bContext *C, wmOperator *op)
{
@@ -579,9 +579,9 @@ static int copy_clipboard_button_exec(bContext *C, wmOperator *op)
memset(&ptr, 0, sizeof(PointerRNA));
uiAnimContextProperty(C, &ptr, &prop, &index);
- if (ptr.data && prop) { // && RNA_property_animateable(ptr.data, prop)
+ if (ptr.data && prop) {
path= RNA_path_from_ID_to_property(&ptr, prop);
-
+
if (path) {
WM_clipboard_text_set(path, FALSE);
MEM_freeN(path);
@@ -597,15 +597,14 @@ void ANIM_OT_copy_clipboard_button(wmOperatorType *ot)
/* identifiers */
ot->name= "Copy Data Path";
ot->idname= "ANIM_OT_copy_clipboard_button";
- ot->description= "Copy the rna data path to the clipboard.";
+ ot->description= "Copy the RNA data path for this property to the clipboard.";
/* callbacks */
ot->exec= copy_clipboard_button_exec;
- //op->poll= ??? // TODO: need to have some driver to be able to do this...
+ //op->poll= ??? // TODO: need to have some valid property before this can be done
/* flags */
- ot->flag= 0;
+ ot->flag= OPTYPE_REGISTER;
}
-
/* ************************************************** */