mirror of
https://github.com/ankitects/anki.git
synced 2025-09-23 16:26:40 -04:00
Fix: Close cards missing "copy card info" button (#3811)
This commit is contained in:
parent
4459e06f74
commit
5d07eca327
1 changed files with 3 additions and 3 deletions
|
@ -819,9 +819,9 @@ class CardLayout(QDialog):
|
|||
assert a is not None
|
||||
qconnect(a.triggered, self.onTargetDeck)
|
||||
|
||||
a = m.addAction(tr.card_templates_copy_info())
|
||||
assert a is not None
|
||||
qconnect(a.triggered, self.onCopyMarkdown)
|
||||
a = m.addAction(tr.card_templates_copy_info())
|
||||
assert a is not None
|
||||
qconnect(a.triggered, self.onCopyMarkdown)
|
||||
|
||||
a = m.addAction(tr.card_templates_browser_appearance())
|
||||
assert a is not None
|
||||
|
|
Loading…
Reference in a new issue