exportlayersdialog.py 768 B

123456789101112131415161718192021222324
  1. # This script is licensed CC 0 1.0, so that you can learn from it.
  2. # ------ CC 0 1.0 ---------------
  3. # The person who associated a work with this deed has dedicated the
  4. # work to the public domain by waiving all of his or her rights to the
  5. # work worldwide under copyright law, including all related and
  6. # neighboring rights, to the extent allowed by law.
  7. # You can copy, modify, distribute and perform the work, even for
  8. # commercial purposes, all without asking permission.
  9. # https://creativecommons.org/publicdomain/zero/1.0/legalcode
  10. from PyQt5.QtWidgets import QDialog
  11. class ExportLayersDialog(QDialog):
  12. def __init__(self, parent=None):
  13. super(ExportLayersDialog, self).__init__(parent)
  14. def closeEvent(self, event):
  15. event.accept()