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>2015-04-14 16:18:45 +0300
committerJoshua Leung <aligorith@gmail.com>2015-04-14 16:19:38 +0300
commitf1e1ec2d8d43034ae36a5143ee57ce58756f115c (patch)
treebef52c9f8aea0f9dfea6222defca9643011bbc91 /source/blender/editors/space_action/action_data.c
parent04daaee0fd0153783653df185286e34dd8684e6f (diff)
Action Editor: Make the warning on unlinking actions a bit less intrusive
venomgfx was complaining that having it do the popup everytime was too intrusive, so demoting it to just showing the warning in the header.
Diffstat (limited to 'source/blender/editors/space_action/action_data.c')
-rw-r--r--source/blender/editors/space_action/action_data.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/space_action/action_data.c b/source/blender/editors/space_action/action_data.c
index 11ccaee4146..6e3e456f67d 100644
--- a/source/blender/editors/space_action/action_data.c
+++ b/source/blender/editors/space_action/action_data.c
@@ -543,7 +543,7 @@ void ED_animedit_unlink_action(bContext *C, ID *id, AnimData *adt, bAction *act,
* trying to get rid of stuff that's actually unwanted!
*/
if (act->id.us == 1) {
- BKE_reportf(reports, RPT_ERROR,
+ BKE_reportf(reports, RPT_WARNING,
"Action '%s' will not be saved, create Fake User or Stash in NLA Stack to retain",
act->id.name + 2);
}