summaryrefslogtreecommitdiffstats
path: root/perl-install/interactive
diff options
context:
space:
mode:
authorThierry Vignaud <tv@mandriva.org>2008-08-19 13:21:17 +0000
committerThierry Vignaud <tv@mandriva.org>2008-08-19 13:21:17 +0000
commit7b5ed359ef4437302c6f66193b3f8e97ac862753 (patch)
tree09f3846e34f8abf9ed927b054d68dcef21ca6d86 /perl-install/interactive
parente40d3f8508fa5028d4597790aefa66ac0ece20b6 (diff)
downloaddrakx-backup-do-not-use-7b5ed359ef4437302c6f66193b3f8e97ac862753.tar
drakx-backup-do-not-use-7b5ed359ef4437302c6f66193b3f8e97ac862753.tar.gz
drakx-backup-do-not-use-7b5ed359ef4437302c6f66193b3f8e97ac862753.tar.bz2
drakx-backup-do-not-use-7b5ed359ef4437302c6f66193b3f8e97ac862753.tar.xz
drakx-backup-do-not-use-7b5ed359ef4437302c6f66193b3f8e97ac862753.zip
(_gtk__Install_Button) factorize new installer style button for further reusage
Diffstat (limited to 'perl-install/interactive')
-rw-r--r--perl-install/interactive/gtk.pm14
1 files changed, 5 insertions, 9 deletions
diff --git a/perl-install/interactive/gtk.pm b/perl-install/interactive/gtk.pm
index 5df2d1c4d..2e7593660 100644
--- a/perl-install/interactive/gtk.pm
+++ b/perl-install/interactive/gtk.pm
@@ -409,15 +409,11 @@ sub create_widget {
$e->{grow} = 'fill';
my $children = [ if_($e->{message}, { type => 'only_label', no_indent => 1, val => \$e->{message} }), @{$e->{children}} ];
my $box = create_widgets_block($o, $children, $update, $ignore_ref);
- $w = gtknew('Button', child => gtknew('HBox', spacing => 5,
- children_tight => [
- gtknew('Image', file => 'advanced_expander'),
- gtknew('Label', text => $e->{text}),
- ],
- ),
- if_($::isInstall, relief => 'none'),
- clicked => sub { ask_fromW($o, { }, $e->{children}) }
- );
+ $w = gtknew('HBox', children_tight => [
+ gtknew('Install_Button', text => $e->{text},
+ clicked => sub { ask_fromW($o, { }, $e->{children}) }
+ )
+ ]);
} elsif ($e->{type} =~ /list/) {
$e->{formatted_list} = [ map { may_apply($e->{format}, $_) } @{$e->{list}} ];