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
vecs
FIJI Public
Commits
ac33dc57
Commit
ac33dc57
authored
Jan 04, 2018
by
Stefan Tauner
Browse files
FIJISettingsViewer: call check_change() on lfsr_mask changes to indicate unsaved changes
parent
5ad781ea
Changes
1
Hide whitespace changes
Inline
Side-by-side
bin/Tk/FIJISettingsViewer.pm
View file @
ac33dc57
...
...
@@ -1088,7 +1088,11 @@ sub _add_fiu_widgets {
$mask_entry
->
configure
('
-text
'
=>
sprintf
("
0x%x
",
$fiu
->
{'
FIU_LFSR_MASK
'}));
$mask_entry
->
configure
(
'
-validate
'
=>
'
key
',
'
-validatecommand
'
=>
[
\
&_validate_fiu_entry
,
$self
,
1
,
$mask_entry
,
'
FIU_LFSR_MASK
',
$i
],
'
-validatecommand
'
=>
sub
{
$self
->
_validate_fiu_entry
(
1
,
$mask_entry
,
'
FIU_LFSR_MASK
',
$i
,
$_
[
0
]);
$self
->
_check_change
();
return
1
;
},
);
$mask_entry
->
{'
displaygroup
'}
=
DISPLAYGROUPS_FIU_KEY
;
$mask_entry
->
{'
key
'}
=
"
FIU
${i}
_LFSR_MASK
";
...
...
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