diff options
author | Thierry Vignaud <tv@mandriva.org> | 2008-08-20 08:30:48 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mandriva.org> | 2008-08-20 08:30:48 +0000 |
commit | 150a4bdf91e917db24a025a2d49fc32a1e1c4909 (patch) | |
tree | eda9e9f5f0b0c07a05a2ebcd387031d5a94fe244 /perl-install/interactive/gtk.pm | |
parent | a28a74a06693471697facbce3f6ff39f5bfc2c2c (diff) | |
download | drakx-150a4bdf91e917db24a025a2d49fc32a1e1c4909.tar drakx-150a4bdf91e917db24a025a2d49fc32a1e1c4909.tar.gz drakx-150a4bdf91e917db24a025a2d49fc32a1e1c4909.tar.bz2 drakx-150a4bdf91e917db24a025a2d49fc32a1e1c4909.tar.xz drakx-150a4bdf91e917db24a025a2d49fc32a1e1c4909.zip |
(create_widget) set title for advanced dialogs instead of relying on
global step's title
Diffstat (limited to 'perl-install/interactive/gtk.pm')
-rw-r--r-- | perl-install/interactive/gtk.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/interactive/gtk.pm b/perl-install/interactive/gtk.pm index c3f4d4968..7f8935568 100644 --- a/perl-install/interactive/gtk.pm +++ b/perl-install/interactive/gtk.pm @@ -413,7 +413,7 @@ sub create_widget { my $box = create_widgets_block($o, $children, $update, $ignore_ref); $w = gtknew('HBox', children_tight => [ gtknew('Install_Button', text => $e->{text}, - clicked => sub { ask_fromW($o, { }, $e->{children}) } + clicked => sub { ask_fromW($o, { title => N("Advanced") }, $e->{children}) } ) ]); } elsif ($e->{type} =~ /list/) { |