Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Q
qgroundcontrol
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Valentin Platzgummer
qgroundcontrol
Commits
91af9d7f
Commit
91af9d7f
authored
5 years ago
by
Jacob Dahl
Browse files
Options
Downloads
Patches
Plain Diff
fixes issue where the checklist is marked as (passed) when only a single group has passed
parent
72d2cce4
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/FlightDisplay/PreFlightCheckList.qml
+6
-1
6 additions, 1 deletion
src/FlightDisplay/PreFlightCheckList.qml
with
6 additions
and
1 deletion
src/FlightDisplay/PreFlightCheckList.qml
+
6
−
1
View file @
91af9d7f
...
...
@@ -42,9 +42,14 @@ Rectangle {
group
=
checkListRepeater
.
itemAt
(
index
+
1
)
group
.
enabled
=
true
group
.
_checked
=
true
}
else
if
((
index
+
1
)
==
checkListRepeater
.
count
)
{
// If the last group is passed, we mark the entire checklist as passed.
_passed
=
true
checklistDropPanel
.
close
()
}
}
else
{
_passed
=
false
}
_passed
=
passed
}
//-- Pick a checklist model that matches the current airframe type (if any)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment