Skip to content

Commit

Permalink
Merge pull request #116 from MultisampledNight/outdated-init-call
Browse files Browse the repository at this point in the history
Fix outdated init call
  • Loading branch information
Dummerle authored Oct 15, 2021
2 parents 9b1c068 + d3e5d76 commit 8597357
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ __pycache__

/.idea
/.vscode
*~
/build
/dist
/deb_dist
Expand Down
3 changes: 1 addition & 2 deletions rare/components/tabs/downloads/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -199,8 +199,7 @@ def on_install_dialog_closed(self, download_item: InstallQueueItemModel):

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()
Expand Down

0 comments on commit 8597357

Please sign in to comment.