1
0
Fork 0
mirror of synced 2024-06-25 09:40:31 +12:00

Fix crash in Downloads tab while startup

This commit is contained in:
MultisampledNight 2021-10-15 15:27:20 +02:00
parent 9b1c068a07
commit dcaae46649
No known key found for this signature in database
GPG key ID: 02B1BAF6A675FF9B

View file

@ -199,8 +199,7 @@ class DownloadTab(QWidget):
def get_install_options(self, options: InstallOptionsModel):
install_dialog = InstallDialog(self.core,
InstallQueueItemModel(options=options),
install_dialog = InstallDialog(InstallQueueItemModel(options=options),
update=options.update, silent=options.silent, parent=self)
install_dialog.result_ready.connect(self.on_install_dialog_closed)
install_dialog.execute()