From 3777918e5c90ccb4469fe9f6282e0b4d7e53b859 Mon Sep 17 00:00:00 2001 From: Joshua Leung Date: Thu, 21 Jun 2018 16:08:52 +1200 Subject: Remove debug prints --- source/blender/editors/space_action/space_action.c | 1 - source/blender/makesrna/intern/rna_space.c | 1 - 2 files changed, 2 deletions(-) (limited to 'source/blender') diff --git a/source/blender/editors/space_action/space_action.c b/source/blender/editors/space_action/space_action.c index 31ae47245c5..537f184c71c 100644 --- a/source/blender/editors/space_action/space_action.c +++ b/source/blender/editors/space_action/space_action.c @@ -859,7 +859,6 @@ static void action_space_subtype_set(ScrArea *sa, int value) sact->mode = value; } else { - printf("%p mode prev = %d\n", sact, sact->mode_prev); sact->mode = sact->mode_prev; } } diff --git a/source/blender/makesrna/intern/rna_space.c b/source/blender/makesrna/intern/rna_space.c index 6703c43437c..11d30721c9e 100644 --- a/source/blender/makesrna/intern/rna_space.c +++ b/source/blender/makesrna/intern/rna_space.c @@ -1522,7 +1522,6 @@ static void rna_SpaceDopeSheetEditor_mode_update(bContext *C, PointerRNA *ptr) /* store current mode as "old mode", so that returning from other editors doesn't always reset to "Action Editor" */ if (saction->mode != SACTCONT_TIMELINE) { - printf("%p storing %d as old mode over %d\n", saction, saction->mode, saction->mode_prev); saction->mode_prev = saction->mode; } } -- cgit v1.2.3