-
Notifications
You must be signed in to change notification settings - Fork 34
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Model Loading #355
Model Loading #355
Conversation
…e file dialog for each model
@@ -25,18 +27,21 @@ def __init__(self): | |||
|
|||
# The native dialog may prevent the selection from closing after a | |||
# directory is selected. | |||
self.options = QFileDialog.Option(3) | |||
self.options = QFileDialog.Option.DontUseNativeDialog |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Note that this was previously broken because the Option enum changed between pyqt5 and 6.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let's wait on the orchestrator merge; this will change where it needs to be implemented (task vs bci_main). The PR is ready.
The orchestrator changes have been merged into this branch and the model loading code was moved to the task. This PR should be ready for review. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It works well for me! Thanks for making the updates after the orchestrator merge.
Overview
Changed model loading behavior to prompt the user using a separate file dialog for each model.
Ticket
https://www.pivotaltracker.com/story/show/188038501
Contributions
Test
acq_mode
configurations to confirm that the file prompts were working correctly.