mirror of
https://github.com/ankitects/anki.git
synced 2025-09-18 22:12:21 -04:00
parent
63b8b32602
commit
2291f9a9fb
1 changed files with 1 additions and 1 deletions
|
@ -67,7 +67,7 @@ class ExportDialog(QDialog):
|
|||
self.exporter = self.exporters[idx][1](self.col)
|
||||
self.isApkg = self.exporter.ext == ".apkg"
|
||||
self.isVerbatim = getattr(self.exporter, "verbatim", False)
|
||||
self.isTextNote = hasattr(self.exporter, "includeTags")
|
||||
self.isTextNote = getattr(self.exporter, "includeTags", False)
|
||||
self.frm.includeSched.setVisible(
|
||||
getattr(self.exporter, "includeSched", None) is not None
|
||||
)
|
||||
|
|
Loading…
Reference in a new issue