diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2005-08-03 07:37:10 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2005-08-03 07:37:10 +0000 |
commit | 809c258ac0625bcbabe304585dcab444a300cc4d (patch) | |
tree | 3c5f791dfa09e6033d092303b3157c8fc49f92a9 /perl-install/install_gtk.pm | |
parent | 2f7aa5d9185838fcb3a57edd3535f04bf56a74d6 (diff) | |
download | drakx-809c258ac0625bcbabe304585dcab444a300cc4d.tar drakx-809c258ac0625bcbabe304585dcab444a300cc4d.tar.gz drakx-809c258ac0625bcbabe304585dcab444a300cc4d.tar.bz2 drakx-809c258ac0625bcbabe304585dcab444a300cc4d.tar.xz drakx-809c258ac0625bcbabe304585dcab444a300cc4d.zip |
- rename logo to have a mandriva name
- its size is bigger, so adapt to it
Diffstat (limited to 'perl-install/install_gtk.pm')
-rw-r--r-- | perl-install/install_gtk.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/install_gtk.pm b/perl-install/install_gtk.pm index 9958d1cb2..5bfa5521f 100644 --- a/perl-install/install_gtk.pm +++ b/perl-install/install_gtk.pm @@ -174,7 +174,7 @@ sub create_logo_window { mygtk2::may_destroy($o->{logo_window}); - my $file = $o->{meta_class} eq 'firewall' ? "logo-mandrake-Firewall.png" : "logo-mandrake.png"; + my $file = $o->{meta_class} eq 'firewall' ? "logo-mandriva-Firewall.png" : "logo-mandriva.png"; $o->{logo_window} = gtknew('Window', @@ -210,7 +210,7 @@ q(<fontconfig> sub init_sizes() { ($::rootwidth, $::rootheight) = (Gtk2::Gdk->screen_width, Gtk2::Gdk->screen_height); $::stepswidth = $::rootwidth <= 640 ? 0 : 200 if !$::move; - ($::logowidth, $::logoheight) = $::rootwidth <= 640 ? (0, 0) : (500, 40); + ($::logowidth, $::logoheight) = $::rootwidth <= 640 ? (0, 0) : (800, 75); ($::windowwidth, $::windowheight) = ($::rootwidth - $::stepswidth, $::rootheight - $::helpheight - $::logoheight); ($::real_windowwidth, $::real_windowheight) = (576, 418); $::move and $::windowwidth -= 100; |