Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
TASTE
asn1-value-editor
Commits
12329335
Commit
12329335
authored
Oct 05, 2016
by
Maxime Perrotin
Browse files
Fix missing "self"
parent
18aa74b9
Changes
3
Hide whitespace changes
Inline
Side-by-side
README.md
View file @
12329335
...
...
@@ -34,6 +34,7 @@ LICENSE: LGPL - see LICENSE file
CHANGELOG:
1.
5.4 - Bugfix - needed for MSC editor
1.
5.3 - Minor accomodation for the MSC editor
1.
5.2 - Minor bugfix with SDL interface
1.
5.1 - Simulator supports continuous signals
...
...
asn1_value_editor/asn1_value_editor.py
View file @
12329335
...
...
@@ -16,7 +16,7 @@
__author__
=
"Maxime Perrotin"
__license__
=
"LGPLv3"
__version__
=
"1.5.
3
"
__version__
=
"1.5.
4
"
__url__
=
"http://taste.tuxfamily.org"
import
sys
...
...
asn1_value_editor/standalone_editor.py
View file @
12329335
...
...
@@ -283,7 +283,7 @@ class SingleValueEditor(QObject):
def
editParam
(
self
,
param
,
defValue
=
None
,
asnType
=
None
):
''' Edit parameter (open widget, wait for OK/Cancel and read value) '''
widget
=
setupEdit
(
param
,
defValue
,
asnType
)
widget
=
self
.
setupEdit
(
param
,
defValue
,
asnType
)
response
=
widget
[
'widget'
].
exec_
()
if
response
:
data
=
widget
[
'editor'
].
getVariable
(
dest
=
widget
[
'editor'
].
asn1Instance
)
...
...
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