diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2001-08-19 14:52:47 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2001-08-19 14:52:47 +0000 |
commit | cae5d8a4be62874d71a3c84d94e94bbfe0df7bad (patch) | |
tree | 1768e51cc1b011965ef710a0e90ff242b9ecb113 | |
parent | c77c90953e0138a049985bea98a901a727478f14 (diff) | |
download | drakx-backup-do-not-use-cae5d8a4be62874d71a3c84d94e94bbfe0df7bad.tar drakx-backup-do-not-use-cae5d8a4be62874d71a3c84d94e94bbfe0df7bad.tar.gz drakx-backup-do-not-use-cae5d8a4be62874d71a3c84d94e94bbfe0df7bad.tar.bz2 drakx-backup-do-not-use-cae5d8a4be62874d71a3c84d94e94bbfe0df7bad.tar.xz drakx-backup-do-not-use-cae5d8a4be62874d71a3c84d94e94bbfe0df7bad.zip |
(create_ctree): fix focusing (the assumption number of leaves = number of lines is dumb)
-rw-r--r-- | perl-install/interactive_gtk.pm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/perl-install/interactive_gtk.pm b/perl-install/interactive_gtk.pm index f7e5020d9..58541304c 100644 --- a/perl-install/interactive_gtk.pm +++ b/perl-install/interactive_gtk.pm @@ -175,9 +175,9 @@ sub create_ctree { for (my $c = $node; $c; $c = $c->row->parent) { $tree->expand($c); } - foreach (0 .. $#l) { - if ($tree->node_nth($_) == $node) { - $tree->set_focus_row($_); + for (my $i = 0; $tree->node_nth($i); $i++) { + if ($tree->node_nth($i) == $node) { + $tree->set_focus_row($i); last; } } |