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
7c359b24
Unverified
Commit
7c359b24
authored
Jun 17, 2018
by
Don Gagne
Committed by
GitHub
Jun 17, 2018
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #6596 from DonLakeFlyer/OfflineMapsFixes
Offline Maps: Import/Export fixes
parents
85672ca8
5ee584a5
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
3 deletions
+7
-3
OfflineMap.qml
src/QtLocationPlugin/QMLControl/OfflineMap.qml
+7
-3
No files found.
src/QtLocationPlugin/QMLControl/OfflineMap.qml
View file @
7c359b24
...
...
@@ -1005,7 +1005,6 @@ QGCView {
text
:
qsTr
(
"
Export
"
)
width
:
_buttonSize
visible
:
QGroundControl
.
corePlugin
.
options
.
showOfflineMapExport
enabled
:
QGroundControl
.
mapEngineManager
.
tileSets
.
count
>
1
onClicked
:
showExport
()
}
QGCButton
{
...
...
@@ -1041,8 +1040,13 @@ QGCView {
delegate
:
QGCCheckBox
{
text
:
object
.
name
checked
:
object
.
selected
onClicked
:
{
object
.
selected
=
checked
onClicked
:
object
.
selected
=
checked
Connections
{
// This connection should theoretically not be needed since the `checked: object.selected` binding should work.
// But for some reason when the user clicks the check box taht binding breaks. Which in turns causes
// Select All/None to update the internal state but check box visible state is out of sync
target
:
object
onSelectedChanged
:
checked
=
object
.
selected
}
}
}
...
...
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