Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Q
qgroundcontrol
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Valentin Platzgummer
qgroundcontrol
Commits
6dd8e034
Commit
6dd8e034
authored
Jul 06, 2017
by
Don Gagne
Committed by
GitHub
Jul 06, 2017
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #5405 from DonLakeFlyer/ImageTurnaround
Survey: Option to take images in turnarounds
parents
5eb921e0
6f0516bd
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
7 deletions
+18
-7
Survey.SettingsGroup.json
src/MissionManager/Survey.SettingsGroup.json
+1
-1
SurveyItemEditor.qml
src/PlanView/SurveyItemEditor.qml
+17
-6
No files found.
src/MissionManager/Survey.SettingsGroup.json
View file @
6dd8e034
...
...
@@ -132,7 +132,7 @@
"name"
:
"CameraTriggerInTurnaround"
,
"shortDescription"
:
"Camera continues taking images in turnarounds."
,
"type"
:
"bool"
,
"defaultValue"
:
fals
e
"defaultValue"
:
tru
e
},
{
"name"
:
"HoverAndCapture"
,
...
...
src/PlanView/SurveyItemEditor.qml
View file @
6dd8e034
...
...
@@ -252,12 +252,6 @@ Rectangle {
enabled
:
cameraTriggerDistanceCheckBox
.
checked
}
}
FactCheckBox
{
text
:
qsTr
(
"
Hover and capture image
"
)
fact
:
missionItem
.
hoverAndCapture
visible
:
missionItem
.
hoverAndCaptureAllowed
}
}
// Camera based grid ui
...
...
@@ -387,6 +381,23 @@ Rectangle {
}
}
FactCheckBox
{
text
:
qsTr
(
"
Hover and capture image
"
)
fact
:
missionItem
.
hoverAndCapture
visible
:
missionItem
.
hoverAndCaptureAllowed
onClicked
:
{
if
(
checked
)
{
missionItem
.
cameraTriggerInTurnaround
.
rawValue
=
false
}
}
}
FactCheckBox
{
text
:
qsTr
(
"
Take images in turnarounds
"
)
fact
:
missionItem
.
cameraTriggerInTurnaround
enabled
:
!
missionItem
.
hoverAndCapture
.
rawValue
}
SectionHeader
{
id
:
gridHeader
text
:
qsTr
(
"
Grid
"
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment