mirror of
https://github.com/ankitects/anki.git
synced 2025-09-24 16:56:36 -04:00
replace _ with space for models/templates too
This commit is contained in:
parent
595dce821b
commit
7c1bce9f43
1 changed files with 1 additions and 1 deletions
|
@ -391,7 +391,7 @@ class EditDeck(QMainWindow):
|
|||
alltags.extend(sortedtags)
|
||||
icon = QIcon(":/icons/" + icon)
|
||||
for t in sortedtags:
|
||||
self.dialog.tagList.addItem(icon, t)
|
||||
self.dialog.tagList.addItem(icon, t.replace("_", " "))
|
||||
alltags.append(None)
|
||||
self.dialog.tagList.insertSeparator(
|
||||
self.dialog.tagList.count())
|
||||
|
|
Loading…
Reference in a new issue