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
f973e35e
Commit
f973e35e
authored
Nov 10, 2016
by
Don Gagne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Change plan element selection to radio buttons
parent
750072dc
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
45 deletions
+6
-45
MissionEditor.qml
src/MissionEditor/MissionEditor.qml
+6
-45
No files found.
src/MissionEditor/MissionEditor.qml
View file @
f973e35e
...
...
@@ -562,66 +562,27 @@ QGCView {
}
}
Round
Button
{
QGCRadio
Button
{
id
:
planElementMission
radius
:
parent
.
_buttonRadius
buttonImage
:
"
/qmlimages/Plan.svg
"
lightBorders
:
_lightWidgetBorders
exclusiveGroup
:
planElementSelectorGroup
text
:
qsTr
(
"
Mission
"
)
checked
:
true
}
QGCLabel
{
text
:
qsTr
(
"
Mission
"
)
color
:
mapPal
.
text
anchors.verticalCenter
:
parent
.
verticalCenter
MouseArea
{
anchors.fill
:
parent
onClicked
:
planElementMission
.
checked
=
true
}
}
Item
{
height
:
1
;
width
:
1
}
Round
Button
{
QGCRadio
Button
{
id
:
planElementGeoFence
radius
:
parent
.
_buttonRadius
buttonImage
:
"
/qmlimages/Plan.svg
"
lightBorders
:
_lightWidgetBorders
exclusiveGroup
:
planElementSelectorGroup
}
QGCLabel
{
text
:
qsTr
(
"
Fence
"
)
color
:
mapPal
.
text
anchors.verticalCenter
:
parent
.
verticalCenter
MouseArea
{
anchors.fill
:
parent
onClicked
:
planElementGeoFence
.
checked
=
true
}
text
:
qsTr
(
"
Fence
"
)
}
Item
{
height
:
1
;
width
:
1
}
Round
Button
{
QGCRadio
Button
{
id
:
planElementRallyPoints
radius
:
parent
.
_buttonRadius
buttonImage
:
"
/qmlimages/Plan.svg
"
lightBorders
:
_lightWidgetBorders
exclusiveGroup
:
planElementSelectorGroup
}
QGCLabel
{
text
:
qsTr
(
"
Rally
"
)
color
:
mapPal
.
text
anchors.verticalCenter
:
parent
.
verticalCenter
MouseArea
{
anchors.fill
:
parent
onClicked
:
planElementRallyPoints
.
checked
=
true
}
text
:
qsTr
(
"
Rally
"
)
}
}
// Row - Plan Element Selector
...
...
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