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
c8a603cf
Commit
c8a603cf
authored
May 19, 2015
by
Don Gagne
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1589 from DonLakeFlyer/AnimationFix
Animation fix
parents
35da67de
a6857a46
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
3 deletions
+13
-3
SensorsComponent.qml
src/AutoPilotPlugins/PX4/SensorsComponent.qml
+3
-3
QGCView.qml
src/QmlControls/QGCView.qml
+10
-0
No files found.
src/AutoPilotPlugins/PX4/SensorsComponent.qml
View file @
c8a603cf
...
...
@@ -186,7 +186,7 @@ QGCView {
Component
{
id
:
compass0ComponentLabel
QGCLabel
{
text
:
"
Compass Orientation
"
}
QGCLabel
{
text
:
"
External
Compass Orientation
"
}
}
Component
{
id
:
compass0ComponentCombo
...
...
@@ -470,7 +470,7 @@ QGCView {
Column
{
x
:
parent
.
width
-
rotationColumnWidth
QGCLabel
{
text
:
"
Autpilot Orientation
"
}
QGCLabel
{
text
:
"
Aut
o
pilot Orientation
"
}
FactComboBox
{
id
:
boardRotationCombo
...
...
@@ -483,7 +483,7 @@ QGCView {
Component
{
id
:
compass0ComponentLabel2
QGCLabel
{
text
:
"
Compass Orientation
"
}
QGCLabel
{
text
:
"
External
Compass Orientation
"
}
}
Component
{
id
:
compass0ComponentCombo2
...
...
src/QmlControls/QGCView.qml
View file @
c8a603cf
...
...
@@ -106,7 +106,15 @@ FactPanel {
}
}
function
__stopAllAnimations
()
{
if
(
__animateHideDialog
.
running
)
{
__animateHideDialog
.
stop
()
}
}
function
showDialog
(
component
,
title
,
charWidth
,
buttons
)
{
__stopAllAnimations
()
__dialogCharWidth
=
charWidth
__dialogTitle
=
title
...
...
@@ -120,6 +128,8 @@ FactPanel {
}
function
showMessage
(
title
,
message
,
buttons
)
{
__stopAllAnimations
()
__dialogCharWidth
=
50
__dialogTitle
=
title
__messageDialogText
=
message
...
...
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