summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--perl-install/ChangeLog18
-rw-r--r--perl-install/my_gtk.pm2
2 files changed, 19 insertions, 1 deletions
diff --git a/perl-install/ChangeLog b/perl-install/ChangeLog
index 25d356c97..5c3f661b1 100644
--- a/perl-install/ChangeLog
+++ b/perl-install/ChangeLog
@@ -1,3 +1,17 @@
+2000-03-05 Pixel <pixel@mandrakesoft.com>
+
+ * my_gtk.pm (_ask_from_list): replace focus_row with set_focus_row
+ (tis the Gtk-Perl 0.7002 was of doing)
+
+2000-03-04 Pixel <pixel@mandrakesoft.com>
+
+ * modules.pm (write_conf): add ide-floppy to the modprobes of
+ post-install supermount
+
+2000-03-03 Pixel <pixel@mandrakesoft.com>
+
+ * commands.pm (ps): add RSS to ps command
+
2000-03-02 Adam Lebsack <adam@mandrakesoft.com>
* mouse.pm: added mac mouse detection to mouse::detect.
@@ -15,6 +29,10 @@
2000-03-01 Pixel <pixel@mandrakesoft.com>
+ * lilo.pm (install_grub): creation
+
+ * network.pm (write_interface_conf): ONBOOT = !pcmcia
+
* install_steps_gtk.pm (new): more intelligent SIGCHLD handler
2000-02-29 Pixel <pixel@mandrakesoft.com>
diff --git a/perl-install/my_gtk.pm b/perl-install/my_gtk.pm
index 9cf9a7551..89944f342 100644
--- a/perl-install/my_gtk.pm
+++ b/perl-install/my_gtk.pm
@@ -459,7 +459,7 @@ sub _ask_from_list {
my $leave = sub { $o->{retval} = $l->[$curr]; Gtk->main_quit };
my $select = sub {
- $list->focus_row($_[0]);
+ $list->set_focus_row($_[0]);
$list->select_row($_[0], 0);
$list->moveto($_[0], 0, 0.5, 0);
};