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 | |
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
-rw-r--r-- | perl-install/install/NEWS | 1 | ||||
-rw-r--r-- | perl-install/interactive/gtk.pm | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS index 6220db76d..c65f60fef 100644 --- a/perl-install/install/NEWS +++ b/perl-install/install/NEWS @@ -1,5 +1,6 @@ - drakx-in-chroot: o fix using remote repositories +- set title for advanced dialogs Version 11.18 - 19 August 2008 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/) { |