diff options
author | Thierry Vignaud <tvignaud@mandriva.org> | 2005-08-27 03:38:12 +0000 |
---|---|---|
committer | Thierry Vignaud <tvignaud@mandriva.org> | 2005-08-27 03:38:12 +0000 |
commit | 426843ef41af0cc143bc3965333ee6ad0f9f42a4 (patch) | |
tree | 7bbdfbdacedbb109439f15d3bd43373bcb36b876 | |
parent | 7e9d32d2feb466bbf7b509d8cf5fc37584f0d3cb (diff) | |
download | drakx-426843ef41af0cc143bc3965333ee6ad0f9f42a4.tar drakx-426843ef41af0cc143bc3965333ee6ad0f9f42a4.tar.gz drakx-426843ef41af0cc143bc3965333ee6ad0f9f42a4.tar.bz2 drakx-426843ef41af0cc143bc3965333ee6ad0f9f42a4.tar.xz drakx-426843ef41af0cc143bc3965333ee6ad0f9f42a4.zip |
(create_box_with_title) disable that code path
-rw-r--r-- | perl-install/ugtk2.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/ugtk2.pm b/perl-install/ugtk2.pm index 19fd2269e..157660561 100644 --- a/perl-install/ugtk2.pm +++ b/perl-install/ugtk2.pm @@ -332,7 +332,7 @@ sub create_box_with_title { my ($txt) = @_; ref($txt) ? $txt : gtknew('WrappedLabel', text => $txt); }; - if ($o->{icon} && (!$::isWizard || $::isInstall)) { + if (0 && ($o->{icon} && !$::isWizard || $::isInstall)) { gtkpack__($box, gtknew('HBox', children => [ 0, gtknew('VBox', width => 15), |