Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Valentin Platzgummer
qgroundcontrol
Commits
6f0516bd
Commit
6f0516bd
authored
Jul 06, 2017
by
DonLakeFlyer
Browse files
Option to take images in turnarounds
parent
5eb921e0
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/MissionManager/Survey.SettingsGroup.json
View file @
6f0516bd
...
...
@@ -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 @
6f0516bd
...
...
@@ -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
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment