diff options
author | damien <damien@mandriva.com> | 2001-06-11 16:03:41 +0000 |
---|---|---|
committer | damien <damien@mandriva.com> | 2001-06-11 16:03:41 +0000 |
commit | 9081484aaf892c5c2f3a980a3a116a21d2ea4220 (patch) | |
tree | 03a6b93e3a7b37fea705e7590b210ac5c5acc7dc /perl-install | |
parent | 95ff7bc93e23c8ed4f216ca5a69a8f9cfbf5c884 (diff) | |
download | drakx-9081484aaf892c5c2f3a980a3a116a21d2ea4220.tar drakx-9081484aaf892c5c2f3a980a3a116a21d2ea4220.tar.gz drakx-9081484aaf892c5c2f3a980a3a116a21d2ea4220.tar.bz2 drakx-9081484aaf892c5c2f3a980a3a116a21d2ea4220.tar.xz drakx-9081484aaf892c5c2f3a980a3a116a21d2ea4220.zip |
no icon if wizard
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/interactive.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/interactive.pm b/perl-install/interactive.pm index 55b4e58ae..6c3558301 100644 --- a/perl-install/interactive.pm +++ b/perl-install/interactive.pm @@ -68,7 +68,7 @@ sub vnew { eval { require interactive_gtk }; if (!$@) { my $o = interactive_gtk->new; - $icon and $o->{icon} = $icon; + $icon && !$::isWizard and $o->{icon} = $icon; return $o; } } |