From: Reto Zingg Date: Sat, 15 Dec 2012 15:57:43 +0000 (+0200) Subject: adapt increment for Leitner Box X-Git-Url: https://git.rmz.fi/?a=commitdiff_plain;h=364b306e391736bfd4daf6f2428f41817eecb2e4;p=libqmvoc.git adapt increment for Leitner Box --- diff --git a/qmvoctext.cpp b/qmvoctext.cpp index 982c2e3..d5c8454 100644 --- a/qmvoctext.cpp +++ b/qmvoctext.cpp @@ -96,7 +96,8 @@ void QmVocText::setGrade( grade_t grade ) void QmVocText::incGrade() { - setGrade( qMax(grade() + 1, KV_LEV1_GRADE ) ); + //setGrade( qMax(grade() + 1, KV_LEV1_GRADE ) ); + setGrade( grade() + 1 ); }