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:
-rw-r--r--source/blender/src/header_action.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/source/blender/src/header_action.c b/source/blender/src/header_action.c
index 0ea50317cf8..f79bb2da7b5 100644
--- a/source/blender/src/header_action.c
+++ b/source/blender/src/header_action.c
@@ -682,7 +682,9 @@ void action_buttons(void)
uiBlockSetEmboss(block, UI_EMBOSSX);
- if (G.saction->action) {
+ // object action is allowed to be zero!
+ if (!get_action_mesh_key()) {
+
/* NAME ETC */
ob=OBACT;
from = (ID*) ob;