mirror of
https://github.com/ankitects/anki.git
synced 2025-09-25 01:06:35 -04:00
make sure to remove matched character from search in studydeck
This commit is contained in:
parent
02ca7d4e95
commit
75b9e21661
1 changed files with 1 additions and 1 deletions
|
@ -92,7 +92,7 @@ class StudyDeck(QDialog):
|
||||||
for c in filt:
|
for c in filt:
|
||||||
if c not in name:
|
if c not in name:
|
||||||
return False
|
return False
|
||||||
name = name[name.index(c):]
|
name = name[name.index(c)+1:]
|
||||||
return True
|
return True
|
||||||
|
|
||||||
def accept(self):
|
def accept(self):
|
||||||
|
|
Loading…
Reference in a new issue