Skip to content

Commit da09062

Browse files
committed
main_win: Remove actionImportImageSequence_trigger
1 parent a9c40d1 commit da09062

File tree

1 file changed

+0
-11
lines changed

1 file changed

+0
-11
lines changed

src/windows/main_window.py

-11
Original file line numberDiff line numberDiff line change
@@ -449,17 +449,6 @@ def actionDuplicateTitle_trigger(self, event):
449449
# Run the dialog event loop - blocking interaction on this window during that time
450450
return win.exec_()
451451

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-
463452
def actionClearHistory_trigger(self, event):
464453
"""Clear history for current project"""
465454
project = get_app().project

0 commit comments

Comments
 (0)