Fix: Close cards missing "copy card info" button (#3811)

This commit is contained in:
Luc Mcgrady 2025-02-16 09:10:04 +00:00 committed by GitHub
parent 4459e06f74
commit 5d07eca327
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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