From be722989f356fc490ab1d49a77739cd8740583a7 Mon Sep 17 00:00:00 2001 From: Damien Elmes Date: Fri, 26 Oct 2012 03:03:37 +0900 Subject: [PATCH] don't show custom study message on a custom study deck --- anki/sched.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/anki/sched.py b/anki/sched.py index 098505ae4..6054b6f9b 100644 --- a/anki/sched.py +++ b/anki/sched.py @@ -1128,7 +1128,7 @@ There are more new cards available, but the daily limit has been reached. You can increase the limit in the options, but please bear in mind that the more new cards you introduce, the higher your short-term review workload will become.""")) - if self.haveCustomStudy: + if self.haveCustomStudy and not self.col.decks.current()['dyn']: line.append(_("""\ To study outside of the normal schedule, click the Custom Study button below.""")) return "

".join(line)