mirror of
https://github.com/ankitects/anki.git
synced 2025-09-21 07:22:23 -04:00
remove unicode isolation markers from add-on config editor title
This commit is contained in:
parent
3f403040db
commit
9eb11b53d5
1 changed files with 6 additions and 4 deletions
|
@ -25,7 +25,7 @@ import anki
|
|||
import aqt
|
||||
import aqt.forms
|
||||
from anki.httpclient import HttpClient
|
||||
from anki.lang import _, ngettext
|
||||
from anki.lang import _, ngettext, without_unicode_isolation
|
||||
from aqt import gui_hooks
|
||||
from aqt.qt import *
|
||||
from aqt.utils import (
|
||||
|
@ -1293,9 +1293,11 @@ class ConfigEditor(QDialog):
|
|||
restoreGeom(self, "addonconf")
|
||||
restoreSplitter(self.form.splitter, "addonconf")
|
||||
self.setWindowTitle(
|
||||
tr(
|
||||
TR.ADDONS_CONFIG_WINDOW_TITLE,
|
||||
name=self.mgr.addon_meta(addon).human_name(),
|
||||
without_unicode_isolation(
|
||||
tr(
|
||||
TR.ADDONS_CONFIG_WINDOW_TITLE,
|
||||
name=self.mgr.addon_meta(addon).human_name(),
|
||||
)
|
||||
)
|
||||
)
|
||||
self.show()
|
||||
|
|
Loading…
Reference in a new issue