Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Valentin Platzgummer
qgroundcontrol
Commits
968519cd
Commit
968519cd
authored
Mar 04, 2017
by
DonLakeFlyer
Browse files
* Fix toggle button check state when new DropPanel is shown
parent
549d095c
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/QmlControls/ToolStrip.qml
View file @
968519cd
...
...
@@ -79,8 +79,8 @@ Rectangle {
dropButtonsExclusiveGroup
.
current
=
null
// Signal all toggles as off
for
(
var
i
=
0
;
i
<
model
.
length
;
i
++
)
{
if
(
model
[
i
].
toggle
Button
===
true
)
{
clicked
(
i
ndex
,
false
)
if
(
model
[
i
].
toggle
===
true
)
{
_root
.
clicked
(
i
,
false
)
}
}
}
...
...
@@ -198,6 +198,7 @@ Rectangle {
dropPanel
.
hide
()
// hide affects checked, so this needs to be duplicated inside not outside if
}
else
{
dropPanel
.
hide
()
// hide affects checked, so this needs to be duplicated inside not outside if
uncheckAll
()
checked
=
true
var
panelEdgeTopPoint
=
mapToItem
(
_root
,
width
,
0
)
dropPanel
.
show
(
panelEdgeTopPoint
,
height
,
modelData
.
dropPanelComponent
)
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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