Skip to content

Commit

Permalink
fix signup link
Browse files Browse the repository at this point in the history
  • Loading branch information
dae committed Aug 25, 2020
1 parent ef7f61a commit dee7d45
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion qt/aqt/sync.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
from typing import Callable, Tuple

import aqt
from anki.lang import without_unicode_isolation
from anki.rsbackend import (
TR,
FullSyncProgress,
Expand Down Expand Up @@ -289,7 +290,9 @@ def get_id_and_pass_from_user(
diag.setWindowModality(Qt.WindowModal)
vbox = QVBoxLayout()
info_label = QLabel(
tr(TR.SYNC_ACCOUNT_REQUIRED, link="https://ankiweb.net/account/login")
without_unicode_isolation(
tr(TR.SYNC_ACCOUNT_REQUIRED, link="https://ankiweb.net/account/login")
)
)
info_label.setOpenExternalLinks(True)
info_label.setWordWrap(True)
Expand Down

0 comments on commit dee7d45

Please sign in to comment.