Skip to content
GitLab
Menu
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
62469b5a
Commit
62469b5a
authored
Jun 19, 2017
by
Stefan Tauner
Browse files
FIJISettingsViewer: transfer focus if radio buttons to select drivers are pressed
parent
ce7a163b
Changes
1
Hide whitespace changes
Inline
Side-by-side
bin/Tk/FIJISettingsViewer.pm
View file @
62469b5a
...
...
@@ -1622,6 +1622,8 @@ sub _add_driver_radiobutton_list {
$driver_label
->
configure
(
-
text
=>
$conn
->
{
str
});
}
else
{
$radio_button
=
$driver_container_pane
->
Radiobutton
(
-
value
=>
$conn
,
-
variable
=>
\
$sel
);
$radio_button
->
bind
('
<ButtonRelease-1>
',
sub
{
$radio_button
->
focus
();
});
$driver_label
=
$driver_container_pane
->
Label
(
-
text
=>
$conn
->
{
str
},
-
justify
=>
"
left
");
$radio_button
->
grid
(
-
row
=>
$i
+
1
,
-
column
=>
0
);
$driver_label
->
grid
(
-
row
=>
$i
+
1
,
-
column
=>
1
,
-
sticky
=>
"
w
");
...
...
Write
Preview
Supports
Markdown
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