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
41f781e3
Commit
41f781e3
authored
Oct 03, 2019
by
Don Gagne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
parent
cfa151aa
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
14 additions
and
5 deletions
+14
-5
APMCameraComponent.qml
src/AutoPilotPlugins/APM/APMCameraComponent.qml
+1
-0
APMCameraSubComponent.qml
src/AutoPilotPlugins/APM/APMCameraSubComponent.qml
+5
-4
APMLightsComponent.qml
src/AutoPilotPlugins/APM/APMLightsComponent.qml
+2
-0
APMPowerComponent.qml
src/AutoPilotPlugins/APM/APMPowerComponent.qml
+1
-0
PIDTuning.qml
src/QmlControls/PIDTuning.qml
+2
-1
FirmwareUpgrade.qml
src/VehicleSetup/FirmwareUpgrade.qml
+1
-0
MavlinkSettings.qml
src/ui/preferences/MavlinkSettings.qml
+2
-0
No files found.
src/AutoPilotPlugins/APM/APMCameraComponent.qml
View file @
41f781e3
...
...
@@ -272,6 +272,7 @@ SetupPage {
anchors.left
:
gimbalOutLabel
.
right
width
:
mountAngMinField
.
width
model
:
gimbalOutModel
textRole
:
"
text
"
currentIndex
:
gimbalOutIndex
onActivated
:
setRCFunction
(
gimbalOutModel
.
get
(
index
).
value
,
rcFunction
)
...
...
src/AutoPilotPlugins/APM/APMCameraSubComponent.qml
View file @
41f781e3
...
...
@@ -316,10 +316,11 @@ SetupPage {
}
QGCComboBox
{
id
:
outputChan
width
:
servoPWMMinField
.
width
model
:
gimbalOutModel
currentIndex
:
gimbalOutIndex
id
:
outputChan
width
:
servoPWMMinField
.
width
model
:
gimbalOutModel
textRole
:
"
text
"
currentIndex
:
gimbalOutIndex
onActivated
:
setRCFunction
(
gimbalOutModel
.
get
(
index
).
value
,
rcFunction
)
}
...
...
src/AutoPilotPlugins/APM/APMLightsComponent.qml
View file @
41f781e3
...
...
@@ -191,6 +191,7 @@ SetupPage {
anchors.left
:
lightsStepLabel
.
right
width
:
ScreenTools
.
defaultFontPixelWidth
*
15
model
:
lightsOutModel
textRole
:
"
text
"
currentIndex
:
lights1OutIndex
onActivated
:
setRCFunction
(
lightsOutModel
.
get
(
index
).
value
,
lights1Function
)
...
...
@@ -211,6 +212,7 @@ SetupPage {
anchors.left
:
lightsStepLabel
.
right
width
:
lights1Combo
.
width
model
:
lightsOutModel
textRole
:
"
text
"
currentIndex
:
lights2OutIndex
onActivated
:
setRCFunction
(
lightsOutModel
.
get
(
index
).
value
,
lights2Function
)
...
...
src/AutoPilotPlugins/APM/APMPowerComponent.qml
View file @
41f781e3
...
...
@@ -398,6 +398,7 @@ SetupPage {
id
:
sensorCombo
Layout.minimumWidth
:
_fieldWidth
model
:
sensorModel
textRole
:
"
text
"
onActivated
:
{
if
(
index
<
sensorModel
.
count
-
1
)
{
...
...
src/QmlControls/PIDTuning.qml
View file @
41f781e3
...
...
@@ -303,7 +303,8 @@ RowLayout {
QGCLabel
{
text
:
qsTr
(
"
Increment/Decrement %
"
)
}
QGCComboBox
{
id
:
adjustPercentCombo
id
:
adjustPercentCombo
textRole
:
"
text
"
model
:
ListModel
{
id
:
adjustPercentModel
ListElement
{
text
:
"
5
"
;
value
:
0.05
}
...
...
src/VehicleSetup/FirmwareUpgrade.qml
View file @
41f781e3
...
...
@@ -409,6 +409,7 @@ SetupPage {
anchors.right
:
parent
.
right
visible
:
px4Flow
model
:
px4FlowFirmwareList
textRole
:
"
text
"
currentIndex
:
_defaultFirmwareIsPX4
?
0
:
1
}
...
...
src/ui/preferences/MavlinkSettings.qml
View file @
41f781e3
...
...
@@ -513,6 +513,7 @@ Rectangle {
id
:
windCombo
width
:
_valueWidth
enabled
:
!
_disableDataPersistence
textRole
:
"
text
"
model
:
ListModel
{
id
:
windItems
ListElement
{
text
:
"
Please Select
"
;
value
:
-
1
}
...
...
@@ -550,6 +551,7 @@ Rectangle {
id
:
ratingCombo
width
:
_valueWidth
enabled
:
!
_disableDataPersistence
textRole
:
"
text
"
model
:
ListModel
{
id
:
ratingItems
ListElement
{
text
:
"
Please Select
"
;
value
:
"
notset
"
}
...
...
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