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
d5a21e16
Commit
d5a21e16
authored
Jul 14, 2015
by
Don Gagne
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1717 from DonLakeFlyer/ParamEditKeys
Parameter editor keys
parents
ae8ea3bf
c7dd080e
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
0 deletions
+15
-0
ParameterEditorDialog.qml
src/QmlControls/ParameterEditorDialog.qml
+9
-0
QGCTextField.qml
src/QmlControls/QGCTextField.qml
+6
-0
No files found.
src/QmlControls/ParameterEditorDialog.qml
View file @
d5a21e16
...
@@ -59,6 +59,7 @@ QGCViewDialog {
...
@@ -59,6 +59,7 @@ QGCViewDialog {
validationError
.
text
=
fact
.
validate
(
validateValue
,
false
/* convertOnly */
)
validationError
.
text
=
fact
.
validate
(
validateValue
,
false
/* convertOnly */
)
forceSave
.
visible
=
true
forceSave
.
visible
=
true
}
}
valueField
.
forceActiveFocus
();
}
}
Column
{
Column
{
...
@@ -82,6 +83,14 @@ QGCViewDialog {
...
@@ -82,6 +83,14 @@ QGCViewDialog {
QGCTextField
{
QGCTextField
{
id
:
valueField
id
:
valueField
text
:
validate
?
validateValue
:
fact
.
valueString
text
:
validate
?
validateValue
:
fact
.
valueString
onAccepted
:
accept
()
Keys.onReleased
:
{
if
(
event
.
key
==
Qt
.
Key_Escape
)
{
reject
()
}
}
}
}
QGCLabel
{
text
:
fact
.
name
}
QGCLabel
{
text
:
fact
.
name
}
...
...
src/QmlControls/QGCTextField.qml
View file @
d5a21e16
...
@@ -60,4 +60,10 @@ TextField {
...
@@ -60,4 +60,10 @@ TextField {
padding.right
:
control
.
showUnits
?
unitsLabelWidthGenerator
.
width
:
control
.
__contentHeight
/
3
padding.right
:
control
.
showUnits
?
unitsLabelWidthGenerator
.
width
:
control
.
__contentHeight
/
3
}
}
onActiveFocusChanged
:
{
if
(
activeFocus
)
{
selectAll
()
}
}
}
}
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