diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2005-01-11 08:36:54 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2005-01-11 08:36:54 +0000 |
commit | 7f63b39f0bd662aa241921262064fd71a1a00297 (patch) | |
tree | ecb5ba6e1343fc0a8f417f86004dfba81b34e00c | |
parent | a47f9b419de7a7a7c00aa155bf8b749493b431f0 (diff) | |
download | drakx-7f63b39f0bd662aa241921262064fd71a1a00297.tar drakx-7f63b39f0bd662aa241921262064fd71a1a00297.tar.gz drakx-7f63b39f0bd662aa241921262064fd71a1a00297.tar.bz2 drakx-7f63b39f0bd662aa241921262064fd71a1a00297.tar.xz drakx-7f63b39f0bd662aa241921262064fd71a1a00297.zip |
no need to set title to 'skip' (it was used by aewm-drakx)
-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 76f38b57f..5a1aaff29 100644 --- a/perl-install/install_gtk.pm +++ b/perl-install/install_gtk.pm @@ -146,7 +146,7 @@ sub create_steps_window { my $w = bless {}, 'ugtk2'; my $offset = 20; $w->{rwindow} = $w->{window} = - gtknew('Window', width => ($::stepswidth - $offset), widget_name => 'Steps', title => 'skip', + gtknew('Window', width => ($::stepswidth - $offset), widget_name => 'Steps', position => [ lang::text_direction_rtl() ? ($::rootwidth - $::stepswidth - $offset) : $offset, 150 ], child => gtknew('VBox', spacing => 6, children_tight => \@l)); $w->show; @@ -182,7 +182,7 @@ sub create_logo_window { $w->{rwindow} = $w->{window} = gtknew('Window', width => $::logowidth, height => $::logoheight, - title => 'skip', widget_name => 'logo', + widget_name => 'logo', child => gtknew('Image', file => $file), ); $w->show; |