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
ae99581e
Commit
ae99581e
authored
Feb 15, 2016
by
Don Gagne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove unused code
parent
d27a4cc8
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
12 deletions
+4
-12
FlightDisplayView.qml
src/FlightDisplay/FlightDisplayView.qml
+4
-5
FlightDisplayViewWidgets.qml
src/FlightDisplay/FlightDisplayViewWidgets.qml
+0
-5
QGCInstrumentWidget.qml
src/FlightMap/Widgets/QGCInstrumentWidget.qml
+0
-1
MissionEditor.qml
src/MissionEditor/MissionEditor.qml
+0
-1
No files found.
src/FlightDisplay/FlightDisplayView.qml
View file @
ae99581e
...
@@ -75,11 +75,10 @@ QGCView {
...
@@ -75,11 +75,10 @@ QGCView {
property
Fact
_emptyFact
:
Fact
{
}
property
Fact
_emptyFact
:
Fact
{
}
property
Fact
_groundSpeedFact
:
_activeVehicle
?
_activeVehicle
.
groundSpeed
:
_emptyFact
property
Fact
_groundSpeedFact
:
_activeVehicle
?
_activeVehicle
.
groundSpeed
:
_emptyFact
property
Fact
_airSpeedFact
:
_activeVehicle
?
_activeVehicle
.
airSpeed
:
_emptyFact
property
Fact
_airSpeedFact
:
_activeVehicle
?
_activeVehicle
.
airSpeed
:
_emptyFact
property
Fact
_altitudeAMSLFact
:
_activeVehicle
?
_activeVehicle
.
altitudeAMSL
:
_emptyFact
property
bool
activeVehicleJoystickEnabled
:
_activeVehicle
?
_activeVehicle
.
joystickEnabled
:
false
property
bool
activeVehicleJoystickEnabled
:
_activeVehicle
?
_activeVehicle
.
joystickEnabled
:
false
property
var
_savedZoomLevel
:
0
property
real
_savedZoomLevel
:
0
property
real
pipSize
:
mainWindow
.
width
*
0.2
property
real
pipSize
:
mainWindow
.
width
*
0.2
...
...
src/FlightDisplay/FlightDisplayViewWidgets.qml
View file @
ae99581e
...
@@ -101,7 +101,6 @@ Item {
...
@@ -101,7 +101,6 @@ Item {
heading
:
_heading
heading
:
_heading
rollAngle
:
_roll
rollAngle
:
_roll
pitchAngle
:
_pitch
pitchAngle
:
_pitch
altitudeFact
:
_altitudeAMSLFact
groundSpeedFact
:
_groundSpeedFact
groundSpeedFact
:
_groundSpeedFact
airSpeedFact
:
_airSpeedFact
airSpeedFact
:
_airSpeedFact
isSatellite
:
_isSatellite
isSatellite
:
_isSatellite
...
@@ -121,7 +120,6 @@ Item {
...
@@ -121,7 +120,6 @@ Item {
heading
:
_heading
heading
:
_heading
rollAngle
:
_roll
rollAngle
:
_roll
pitchAngle
:
_pitch
pitchAngle
:
_pitch
altitudeFact
:
_altitudeAMSLFact
groundSpeedFact
:
_groundSpeedFact
groundSpeedFact
:
_groundSpeedFact
airSpeedFact
:
_airSpeedFact
airSpeedFact
:
_airSpeedFact
isSatellite
:
_isSatellite
isSatellite
:
_isSatellite
...
@@ -137,9 +135,6 @@ Item {
...
@@ -137,9 +135,6 @@ Item {
textColor
:
_isSatellite
?
"
white
"
:
"
black
"
textColor
:
_isSatellite
?
"
white
"
:
"
black
"
visible
:
QGroundControl
.
virtualTabletJoystick
visible
:
QGroundControl
.
virtualTabletJoystick
maxHeight
:
multiTouchItem
.
y
-
y
maxHeight
:
multiTouchItem
.
y
-
y
Component.onCompleted
:
console
.
log
(
y
)
onHeightChanged
:
console
.
log
(
y
,
height
,
multiTouchItem
.
y
)
}
}
//-- Vertical Tool Buttons
//-- Vertical Tool Buttons
...
...
src/FlightMap/Widgets/QGCInstrumentWidget.qml
View file @
ae99581e
...
@@ -53,7 +53,6 @@ Rectangle {
...
@@ -53,7 +53,6 @@ Rectangle {
property
Fact
_emptyFact
:
Fact
{
}
property
Fact
_emptyFact
:
Fact
{
}
property
Fact
groundSpeedFact
:
_emptyFact
property
Fact
groundSpeedFact
:
_emptyFact
property
Fact
airSpeedFact
:
_emptyFact
property
Fact
airSpeedFact
:
_emptyFact
property
Fact
altitudeFact
:
_emptyFact
property
real
_defaultSize
:
ScreenTools
.
defaultFontPixelSize
*
(
9
)
property
real
_defaultSize
:
ScreenTools
.
defaultFontPixelSize
*
(
9
)
...
...
src/MissionEditor/MissionEditor.qml
View file @
ae99581e
...
@@ -219,7 +219,6 @@ QGCView {
...
@@ -219,7 +219,6 @@ QGCView {
QGCViewDialog
{
QGCViewDialog
{
function
accept
()
{
function
accept
()
{
hideDialog
()
hideDialog
()
console
.
log
(
filenameTextField
.
text
)
controller
.
saveMobileMissionToFile
(
filenameTextField
.
text
)
controller
.
saveMobileMissionToFile
(
filenameTextField
.
text
)
}
}
...
...
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