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
37bcff0d
Commit
37bcff0d
authored
Jul 29, 2017
by
DonLakeFlyer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
New coloring for child indicators
parent
45056a54
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
3 deletions
+5
-3
SimpleItemMapVisual.qml
src/PlanView/SimpleItemMapVisual.qml
+1
-0
MissionItemIndexLabel.qml
src/QmlControls/MissionItemIndexLabel.qml
+4
-3
No files found.
src/PlanView/SimpleItemMapVisual.qml
View file @
37bcff0d
...
...
@@ -121,6 +121,7 @@ Item {
z
:
2
label
:
object
.
abbreviation
.
length
===
0
?
object
.
sequenceNumber
:
object
.
abbreviation
.
charAt
(
0
)
checked
:
object
.
isCurrentItem
child
:
true
specifiesCoordinate
:
false
onClicked
:
_root
.
clicked
(
object
.
sequenceNumber
)
...
...
src/QmlControls/MissionItemIndexLabel.qml
View file @
37bcff0d
...
...
@@ -16,7 +16,8 @@ Canvas {
property
int
index
:
0
///< Index to show in the indicator, 0 will show single char label instead, -1 first char of label in indicator full label to the side
property
bool
checked
:
false
property
bool
small
:
false
property
var
color
:
checked
?
"
green
"
:
qgcPal
.
mapButtonHighlight
property
bool
child
:
false
property
var
color
:
checked
?
"
green
"
:
(
child
?
qgcPal
.
mapIndicatorChild
:
qgcPal
.
mapIndicator
)
property
real
anchorPointX
:
_height
/
2
property
real
anchorPointY
:
_height
/
2
property
bool
specifiesCoordinate
:
true
...
...
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