-
Notifications
You must be signed in to change notification settings - Fork 184
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
fix a number of regressions in the flight waypoint list by changing t… #3191
Conversation
…he indexing and finding a work-around to blocking of signals
Codecov Report
@@ Coverage Diff @@
## develop #3191 +/- ##
========================================
Coverage 45.75% 45.75%
========================================
Files 474 474
Lines 25819 25819
Branches 4521 4521
========================================
Hits 11813 11813
Misses 13985 13985
Partials 21 21 |
My recollection was that deleting the non-nav waypoints would screw up fast forward interruption, so might want to check if that is still triggering fine. It might already have been fixed as I haven't deleted those in a while. |
That's not a bug. If you alter your flight plan it stops being whatever specific flight plan (DEAD , BARCAP, CAS, etc) and becomes just "custom" because it not longer meets the requirements of the other flight plan. We can't reason about custom flight plans. |
I realise that. My point is that it might not be worthwhile to look into implementing a way to delete the first waypoint if it does still break fast forward and we have to tell users not to do it anyway. |
Not everyone uses fast forward. For what it's worth, I agree, I don't think these things should be editable at all if it's going to break stuff, but that's been true forever and will be until #270 is done, and people complain if it breaks (that's what caused this PR, after all). |
I did some testing on this one and it seems that deleting both nav and non-nav waypoints will break fast-forward. The exception being raised though is in a different part of the code, so would probably be better captured in a different PR if we think it's worthwhile fixing. |
…he indexing and finding a work-around to blocking of signals
This PR addresses some (but not all) recently reported issues with the waypoints screen reported in Issue #3188 . This PR was tested by:
Known issues: first waypoint (typically hold) cannot be deleted -- still looking into this one.