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
f6ef6a49
Commit
f6ef6a49
authored
Oct 26, 2016
by
Gus Grubba
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
I18N
parent
93ee9ec2
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
7 deletions
+6
-7
MavlinkSettings.qml
src/ui/preferences/MavlinkSettings.qml
+6
-7
No files found.
src/ui/preferences/MavlinkSettings.qml
View file @
f6ef6a49
...
...
@@ -238,7 +238,6 @@ Rectangle {
if
(
emailField
.
text
===
""
)
{
autoUploadCheck
.
checked
=
false
QGroundControl
.
mavlinkLogManager
.
enableAutoUpload
=
false
console
.
log
(
"
forcing enableAutoUpload to false
"
)
}
}
}
...
...
@@ -381,7 +380,7 @@ Rectangle {
anchors.verticalCenter
:
parent
.
verticalCenter
}
QGCLabel
{
text
:
"
Uploaded
"
text
:
qsTr
(
"
Uploaded
"
)
visible
:
object
.
uploaded
width
:
ScreenTools
.
defaultFontPixelWidth
*
20
;
horizontalAlignment
:
Text
.
AlignRight
...
...
@@ -404,7 +403,7 @@ Rectangle {
spacing
:
ScreenTools
.
defaultFontPixelWidth
anchors.horizontalCenter
:
parent
.
horizontalCenter
QGCButton
{
text
:
"
Check All
"
text
:
qsTr
(
"
Check All
"
)
enabled
:
!
QGroundControl
.
mavlinkLogManager
.
uploading
&&
!
QGroundControl
.
mavlinkLogManager
.
logRunning
onClicked
:
{
for
(
var
i
=
0
;
i
<
QGroundControl
.
mavlinkLogManager
.
logFiles
.
count
;
i
++
)
{
...
...
@@ -414,7 +413,7 @@ Rectangle {
}
}
QGCButton
{
text
:
"
Check None
"
text
:
qsTr
(
"
Check None
"
)
enabled
:
!
QGroundControl
.
mavlinkLogManager
.
uploading
&&
!
QGroundControl
.
mavlinkLogManager
.
logRunning
onClicked
:
{
for
(
var
i
=
0
;
i
<
QGroundControl
.
mavlinkLogManager
.
logFiles
.
count
;
i
++
)
{
...
...
@@ -424,7 +423,7 @@ Rectangle {
}
}
QGCButton
{
text
:
"
Delete Selected
"
text
:
qsTr
(
"
Delete Selected
"
)
enabled
:
_selectedCount
>
0
&&
!
QGroundControl
.
mavlinkLogManager
.
uploading
&&
!
QGroundControl
.
mavlinkLogManager
.
logRunning
onClicked
:
deleteDialog
.
open
()
MessageDialog
{
...
...
@@ -440,7 +439,7 @@ Rectangle {
}
}
QGCButton
{
text
:
"
Upload Selected
"
text
:
qsTr
(
"
Upload Selected
"
)
enabled
:
_selectedCount
>
0
&&
!
QGroundControl
.
mavlinkLogManager
.
uploading
&&
!
QGroundControl
.
mavlinkLogManager
.
logRunning
&&
!
_uploadedSelected
visible
:
!
QGroundControl
.
mavlinkLogManager
.
uploading
onClicked
:
{
...
...
@@ -463,7 +462,7 @@ Rectangle {
}
}
QGCButton
{
text
:
"
Cancel
"
text
:
qsTr
(
"
Cancel
"
)
enabled
:
QGroundControl
.
mavlinkLogManager
.
uploading
&&
!
QGroundControl
.
mavlinkLogManager
.
logRunning
visible
:
QGroundControl
.
mavlinkLogManager
.
uploading
onClicked
:
cancelDialog
.
open
()
...
...
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