We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a9c40d1 commit da09062Copy full SHA for da09062
src/windows/main_window.py
@@ -449,17 +449,6 @@ def actionDuplicateTitle_trigger(self, event):
449
# Run the dialog event loop - blocking interaction on this window during that time
450
return win.exec_()
451
452
- def actionImportImageSequence_trigger(self, event):
453
- # show dialog
454
- from windows.Import_image_seq import ImportImageSeq
455
- win = ImportImageSeq()
456
- # Run the dialog event loop - blocking interaction on this window during that time
457
- result = win.exec_()
458
- if result == QDialog.Accepted:
459
- log.info('Import image sequence add confirmed')
460
- else:
461
- log.info('Import image sequence add cancelled')
462
-
463
def actionClearHistory_trigger(self, event):
464
"""Clear history for current project"""
465
project = get_app().project
0 commit comments