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
86e2947d
Unverified
Commit
86e2947d
authored
Aug 20, 2019
by
Gus Grubba
Committed by
GitHub
Aug 20, 2019
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #7713 from mavlink/videoRecordingIndicator
Enable video running time and shutter count
parents
e7e3818d
e56877b3
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
6 deletions
+4
-6
CustomCameraControl.qml
custom-example/res/CustomCameraControl.qml
+4
-6
No files found.
custom-example/res/CustomCameraControl.qml
View file @
86e2947d
...
...
@@ -379,22 +379,20 @@ Item {
anchors.horizontalCenter
:
parent
.
horizontalCenter
}
}
/*
//-----------------------------------------------------------------
//-- Recording Time / Images Captured
Custom
Label {
QGC
Label
{
text
:
(
_cameraVideoMode
&&
_camera
.
videoStatus
===
QGCCameraControl
.
VIDEO_CAPTURE_STATUS_RUNNING
)
?
_camera
.
recordTimeStr
:
"
00:00:00
"
visible
:
_cameraVideoMode
pointSize:
ScreenTools.smallFontPointSize
font.pointSize
:
ScreenTools
.
smallFontPointSize
anchors.horizontalCenter
:
parent
.
horizontalCenter
}
Custom
Label {
QGC
Label
{
text
:
activeVehicle
&&
_cameraPhotoMode
?
(
'
00000
'
+
activeVehicle
.
cameraTriggerPoints
.
count
).
slice
(
-
5
)
:
"
00000
"
visible
:
_cameraPhotoMode
pointSize:
ScreenTools.smallFontPointSize
font.pointSize
:
ScreenTools
.
smallFontPointSize
anchors.horizontalCenter
:
parent
.
horizontalCenter
}
*/
Item
{
height
:
1
width
:
1
...
...
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