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
0ac8e637
Commit
0ac8e637
authored
Jun 08, 2015
by
Don Gagne
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1655 from DonLakeFlyer/RadioCal
Usability fixes:
parents
f488360d
df74f262
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
3 deletions
+17
-3
RadioComponent.qml
src/AutoPilotPlugins/PX4/RadioComponent.qml
+17
-3
No files found.
src/AutoPilotPlugins/PX4/RadioComponent.qml
View file @
0ac8e637
...
...
@@ -236,6 +236,8 @@ QGCView {
duration
:
1500
}
/*
// FIXME: Bar animation is turned off for now to figure out better usbaility
onRcValueChanged: {
if (Math.abs(rcValue - __lastRcValue) > __rcValueMaxJitter) {
__lastRcValue = rcValue
...
...
@@ -243,7 +245,6 @@ QGCView {
}
}
/*
// rcValue debugger
QGCLabel {
anchors.fill: parent
...
...
@@ -427,7 +428,13 @@ QGCView {
primary
:
true
text
:
"
Calibrate
"
onClicked
:
showDialog
(
zeroTrimsDialogComponent
,
dialogTitle
,
50
,
StandardButton
.
Ok
|
StandardButton
.
Cancel
)
onClicked
:
{
if
(
text
==
"
Calibrate
"
)
{
showDialog
(
zeroTrimsDialogComponent
,
dialogTitle
,
50
,
StandardButton
.
Ok
|
StandardButton
.
Cancel
)
}
else
{
controller
.
nextButtonClicked
()
}
}
}
}
// Row - Buttons
...
...
@@ -440,7 +447,14 @@ QGCView {
Item
{
width
:
10
height
:
defaultTextHeight
*
2
height
:
defaultTextHeight
*
4
}
Rectangle
{
width
:
parent
.
width
height
:
1
border.color
:
qgcPal
.
text
border.width
:
1
}
QGCLabel
{
text
:
"
Additional Radio setup:
"
}
...
...
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