diff options
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/interactive.pm | 1 | ||||
-rw-r--r-- | perl-install/interactive/gtk.pm | 7 |
2 files changed, 8 insertions, 0 deletions
diff --git a/perl-install/interactive.pm b/perl-install/interactive.pm index 0fc9a4b55..529d5b29a 100644 --- a/perl-install/interactive.pm +++ b/perl-install/interactive.pm @@ -45,6 +45,7 @@ use do_pkgs; #- validate => function called when "Ok" is pressed. If it returns false, this entry is focused, otherwise it quits #- disabled => function returning wether it should be disabled (grayed) #- focus => function returning wether it should be focused +#- do_not_expand => do not eat all horizontal space #- gtk => gtk preferences #- type => #- button => (with clicked or clicked_may_quit) diff --git a/perl-install/interactive/gtk.pm b/perl-install/interactive/gtk.pm index 763f7897a..f3240474b 100644 --- a/perl-install/interactive/gtk.pm +++ b/perl-install/interactive/gtk.pm @@ -615,6 +615,13 @@ sub create_widgets_block { size_group => $label_sizegrp, alignment => [ 0, 0.5 ]); } + if ($e->{do_not_expand}) { + $e->{real_w} = gtknew('HBox', children => [ + 0, $e->{real_w}, + 1, gtknew('Label'), + ]); + } + $e->{real_w} = gtkpack_(Gtk2::HBox->new, if_($e->{icon}, 0, eval { gtkcreate_img($e->{icon}) }), if_($label_w, 0, $label_w), |