1
0
mirror of https://bitbucket.org/librepilot/librepilot.git synced 2025-03-16 08:29:15 +01:00

Merge branch 'rel-15.05' into rel-nano-15.05

This commit is contained in:
abeck70 2015-05-20 08:37:44 +10:00
commit 2241070d04
2 changed files with 4 additions and 2 deletions

View File

@ -20,9 +20,11 @@ Stefan Cenkov
Andrés Chavarría Krauser
Cosimo Corrado
James Cotton
Kalyn Doerr
Steve Doll
James Duley
Piotr Esden-Tempski
Steve Evans
Peter Farnworth
Ed Faulkner
Andrew Finegan
@ -50,6 +52,7 @@ Stefan Karlsson
Ricky King
Thorsten Klose
Karl Knutsson
Daniël Koek
Sami Korhonen
Hallvard Kristiansen
Alan Krum

View File

@ -379,7 +379,6 @@ Item {
width: scaledBounds.width * sceneItem.width
height: scaledBounds.height * sceneItem.height
x: (scaledBounds.x * sceneItem.width) + (ManualControlCommand.Roll * rc_stick.width * 2.5)
y: (scaledBounds.y * sceneItem.height) + (ManualControlCommand.Pitch * rc_stick.width * 2.5)
smooth: true
@ -394,7 +393,7 @@ Item {
states: State {
name: "fading"
when: show_panels == true
PropertyChanges { target: rc_stick; x: Math.floor(scaledBounds.x * sceneItem.width) + offset_value; }
PropertyChanges { target: rc_stick; x: Math.floor(scaledBounds.x * sceneItem.width) + (ManualControlCommand.Roll * rc_stick.width * 2.5) + offset_value; }
}
transitions: Transition {