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
736947a2
Commit
736947a2
authored
Apr 25, 2017
by
DonLakeFlyer
Browse files
Always show armed indicator
parent
82a703a8
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/ui/toolbar/ArmedIndicator.qml
View file @
736947a2
...
@@ -26,11 +26,8 @@ QGCLabel {
...
@@ -26,11 +26,8 @@ QGCLabel {
text
:
_armed
?
qsTr
(
"
Armed
"
)
:
qsTr
(
"
Disarmed
"
)
text
:
_armed
?
qsTr
(
"
Armed
"
)
:
qsTr
(
"
Disarmed
"
)
font.pointSize
:
ScreenTools
.
mediumFontPointSize
font.pointSize
:
ScreenTools
.
mediumFontPointSize
color
:
qgcPal
.
buttonText
color
:
qgcPal
.
buttonText
visible
:
!
_autoDisarm
||
_fixedWing
property
var
_activeVehicle
:
QGroundControl
.
multiVehicleManager
.
activeVehicle
property
var
_activeVehicle
:
QGroundControl
.
multiVehicleManager
.
activeVehicle
property
bool
_autoDisarm
:
_activeVehicle
?
_activeVehicle
.
autoDisarm
:
false
property
bool
_fixedWing
:
_activeVehicle
?
_activeVehicle
.
fixedWing
:
false
property
bool
_armed
:
_activeVehicle
?
_activeVehicle
.
armed
:
false
property
bool
_armed
:
_activeVehicle
?
_activeVehicle
.
armed
:
false
QGCPalette
{
id
:
qgcPal
}
QGCPalette
{
id
:
qgcPal
}
...
...
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