Remove debug prints

This commit is contained in:
Joshua Leung 2018-06-21 16:08:52 +12:00
parent 417856dae5
commit 3777918e5c
2 changed files with 0 additions and 2 deletions

View File

@ -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;
}
}

View File

@ -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;
}
}