Skip to content

Commit

Permalink
Add missing argument in export function.
Browse files Browse the repository at this point in the history
  • Loading branch information
Carifio24 committed Jul 4, 2024
1 parent 4601c35 commit cfd9bce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion glue_ar/tools/qt.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ def activate(self):

_, ext = splitext(export_path)
filetype = _FILETYPE_NAMES.get(ext, None)
worker = Worker(export_to_ar, export_path, dialog.state_dictionary, compress=dialog.state.draco)
worker = Worker(export_to_ar, self.viewer, export_path, dialog.state_dictionary, compress=dialog.state.draco)
exporting_dialog = ExportingDialog(parent=self.viewer, filetype=filetype)
worker.result.connect(exporting_dialog.close)
worker.error.connect(exporting_dialog.close)
Expand Down

0 comments on commit cfd9bce

Please sign in to comment.