From e138e44397b9ec15b79c909c2b88011b2f9dfddb Mon Sep 17 00:00:00 2001 From: Damien Elmes Date: Mon, 28 May 2012 21:05:26 +0900 Subject: [PATCH] don't force typing preview size --- aqt/clayout.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/aqt/clayout.py b/aqt/clayout.py index 70ad35549..b47b240e8 100644 --- a/aqt/clayout.py +++ b/aqt/clayout.py @@ -222,11 +222,10 @@ Please create a new card type first.""")) def maybeTextInput(self, txt, type='q'): if type == 'q': - repl = "
" % _( - "(text is typed in here)") + repl = "
" else: repl = _("(typing comparison appears here)") - repl = "
%s
" % repl + repl = "
%s
" % repl return re.sub("\[\[type:.+?\]\]", repl, txt) # Card operations