-
Notifications
You must be signed in to change notification settings - Fork 78
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
interactive: add "clear passes button" (2/7) #1789
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## dalia/condense #1789 +/- ##
==================================================
- Coverage 88.90% 88.88% -0.03%
==================================================
Files 260 260
Lines 32080 32032 -48
Branches 4735 4727 -8
==================================================
- Hits 28522 28472 -50
- Misses 2866 2867 +1
- Partials 692 693 +1 ☔ View full report in Codecov by Sentry. |
Should this be stacked on #1788? |
fixed, sorry! |
xdsl/interactive/app.py
Outdated
def clear_passes(self, event: Button.Pressed) -> None: | ||
"""Selected passes cleared when "Clear Passes" button is pressed.""" | ||
self.current_selected_pass_list = () | ||
# self.update_current_module() |
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.
commented code
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.
beautiful
Added ability to clear passes to the gui.
disclaimer/ honesty: Sasha and I are in disagreement with the way I have manually called a function (he envisions everything to be reactive and done "automatically"so to speak), however in order to connect the two reactive variables, I have found that the location where I have manually called the function, perfectly links them.