mirror of
https://github.com/ankitects/anki.git
synced 2025-11-08 05:37:12 -05: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.exporter = self.exporters[idx][1](self.col)
|
||||||
self.isApkg = self.exporter.ext == ".apkg"
|
self.isApkg = self.exporter.ext == ".apkg"
|
||||||
self.isVerbatim = getattr(self.exporter, "verbatim", False)
|
self.isVerbatim = getattr(self.exporter, "verbatim", False)
|
||||||
self.isTextNote = hasattr(self.exporter, "includeTags")
|
self.isTextNote = getattr(self.exporter, "includeTags", False)
|
||||||
self.frm.includeSched.setVisible(
|
self.frm.includeSched.setVisible(
|
||||||
getattr(self.exporter, "includeSched", None) is not None
|
getattr(self.exporter, "includeSched", None) is not None
|
||||||
)
|
)
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue