diff options
author | Thierry Vignaud <tv@mandriva.org> | 2007-09-26 13:00:25 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mandriva.org> | 2007-09-26 13:00:25 +0000 |
commit | cab2b7e6014c035ee18e7eda24846c8e78950227 (patch) | |
tree | 3b8b1102d3020c9a10d8fb050e083c05832912b6 | |
parent | efb1bf376abcf5ce8dab7fead1354d46c943d565 (diff) | |
download | drakx-cab2b7e6014c035ee18e7eda24846c8e78950227.tar drakx-cab2b7e6014c035ee18e7eda24846c8e78950227.tar.gz drakx-cab2b7e6014c035ee18e7eda24846c8e78950227.tar.bz2 drakx-cab2b7e6014c035ee18e7eda24846c8e78950227.tar.xz drakx-cab2b7e6014c035ee18e7eda24846c8e78950227.zip |
(interactive_help) fix displaying help (#33994)
-rw-r--r-- | perl-install/diskdrake/hd_gtk.pm | 3 | ||||
-rw-r--r-- | perl-install/install/NEWS | 1 |
2 files changed, 3 insertions, 1 deletions
diff --git a/perl-install/diskdrake/hd_gtk.pm b/perl-install/diskdrake/hd_gtk.pm index 19efd4a9e..38f9f01c6 100644 --- a/perl-install/diskdrake/hd_gtk.pm +++ b/perl-install/diskdrake/hd_gtk.pm @@ -147,7 +147,8 @@ sub add_kind2notebook { sub interactive_help() { if ($::isInstall) { - $in->interactive_help_sub_display_id('partition_with_diskdrake'); + my $func = $in->interactive_help_sub_display_id('partition_with_diskdrake'); + $func and $func->(); } else { require run_program; run_program::raw({ detach => 1 }, 'drakhelp', '--id', 'diskdrake'); diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS index 553e24688..c951402bd 100644 --- a/perl-install/install/NEWS +++ b/perl-install/install/NEWS @@ -1,4 +1,5 @@ - do not ask desktop choice in upgrade (#34025) +- fix displaying help in custom partition (#33994) Version 10.4.212 - 21 September 2007, by Thierry Vignaud |