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>2010-02-08 05:51:02 +0300
committerJoshua Leung <aligorith@gmail.com>2010-02-08 05:51:02 +0300
commit28238ead51684759f007b44ddb461bbd5d333b48 (patch)
tree595f7a50319a9715017e35130bc05c953ec8728b /source/blender/editors/space_nla/nla_channels.c
parent9827a3e9eac70f68db6dc16d03016c51b7ece3f0 (diff)
Hid some debug prints for clicking on animation channels.
Diffstat (limited to 'source/blender/editors/space_nla/nla_channels.c')
-rw-r--r--source/blender/editors/space_nla/nla_channels.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/source/blender/editors/space_nla/nla_channels.c b/source/blender/editors/space_nla/nla_channels.c
index 1666a169f12..3d20cfe54ba 100644
--- a/source/blender/editors/space_nla/nla_channels.c
+++ b/source/blender/editors/space_nla/nla_channels.c
@@ -59,6 +59,7 @@
#include "BKE_animsys.h"
#include "BKE_nla.h"
#include "BKE_context.h"
+#include "BKE_global.h"
#include "BKE_screen.h"
#include "BKE_utildefines.h"
@@ -109,7 +110,8 @@ static int mouse_nla_channels (bAnimContext *ac, float x, int channel_index, sho
ale= BLI_findlink(&anim_data, channel_index);
if (ale == NULL) {
/* channel not found */
- printf("Error: animation channel (index = %d) not found in mouse_anim_channels() \n", channel_index);
+ if (G.f & G_DEBUG)
+ printf("Error: animation channel (index = %d) not found in mouse_anim_channels() \n", channel_index);
BLI_freelistN(&anim_data);
return 0;
@@ -298,7 +300,8 @@ static int mouse_nla_channels (bAnimContext *ac, float x, int channel_index, sho
break;
default:
- printf("Error: Invalid channel type in mouse_nla_channels() \n");
+ if (G.f & G_DEBUG)
+ printf("Error: Invalid channel type in mouse_nla_channels() \n");
}
/* free channels */