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
55eeb588
Commit
55eeb588
authored
Mar 29, 2016
by
Don Gagne
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #3107 from DonLakeFlyer/MissionItemStatus
Fix layout of mission item status values
parents
f5bad428
80410d68
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
24 deletions
+16
-24
MissionItemStatus.qml
src/MissionEditor/MissionItemStatus.qml
+16
-24
No files found.
src/MissionEditor/MissionItemStatus.qml
View file @
55eeb588
...
...
@@ -35,7 +35,7 @@ Rectangle {
property
real
expandedWidth
///< Width of control when expanded
width
:
_expanded
?
expandedWidth
:
_collapsedWidth
height
:
azimuthLabel
.
y
+
azimuthLabel
.
height
+
_margins
height
:
valueGrid
.
height
+
_margins
radius
:
ScreenTools
.
defaultFontPixelWidth
color
:
qgcPal
.
window
opacity
:
0.80
...
...
@@ -43,7 +43,7 @@ Rectangle {
readonly
property
real
margins
:
ScreenTools
.
defaultFontPixelWidth
property
real
_collapsedWidth
:
distanceLabel
.
width
+
(
margins
*
2
)
property
real
_collapsedWidth
:
valueGrid
.
width
+
(
margins
*
2
)
property
bool
_expanded
:
true
property
real
_distance
:
_statusValid
?
_currentMissionItem
.
distance
:
0
property
real
_altDifference
:
_statusValid
?
_currentMissionItem
.
altDifference
:
0
...
...
@@ -63,39 +63,31 @@ Rectangle {
onClicked
:
_expanded
=
!
_expanded
}
QGCLabel
{
id
:
distanceLabel
Grid
{
id
:
valueGrid
anchors.margins
:
_margins
anchors.left
:
parent
.
left
anchors.top
:
parent
.
top
text
:
"
Distance:
"
+
_distanceText
}
columns
:
2
columnSpacing
:
_margins
QGCLabel
{
id
:
altLabel
anchors.left
:
distanceLabel
.
left
anchors.top
:
distanceLabel
.
bottom
text
:
"
Alt diff:
"
+
_altText
}
QGCLabel
{
text
:
"
Distance:
"
}
QGCLabel
{
text
:
_distanceText
}
QGCLabel
{
id
:
gradientLabel
anchors.left
:
distanceLabel
.
left
anchors.top
:
altLabel
.
bottom
text
:
"
Gradient:
"
+
_gradientText
}
QGCLabel
{
text
:
"
Alt diff:
"
}
QGCLabel
{
text
:
_altText
}
QGCLabel
{
text
:
"
Gradient:
"
}
QGCLabel
{
text
:
_gradientText
}
QGCLabel
{
id
:
azimuthLabel
anchors.left
:
distanceLabel
.
left
anchors.top
:
gradientLabel
.
bottom
text
:
"
Azimuth:
"
+
_azimuthText
QGCLabel
{
text
:
"
Azimuth:
"
}
QGCLabel
{
text
:
_azimuthText
}
}
QGCFlickable
{
anchors.leftMargin
:
_margins
anchors.rightMargin
:
_margins
anchors.left
:
distanceLabel
.
right
anchors.left
:
valueGrid
.
right
anchors.right
:
parent
.
right
anchors.top
:
parent
.
top
anchors.bottom
:
parent
.
bottom
...
...
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