diff options
-rw-r--r-- | perl-install/install/NEWS | 1 | ||||
-rw-r--r-- | perl-install/ugtk2.pm | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS index 730ec2594..cbb325a60 100644 --- a/perl-install/install/NEWS +++ b/perl-install/install/NEWS @@ -1,5 +1,6 @@ - align titles to the left - display a separator below titles +- justify big texts - update language step Version 11.11 - 18 August 2008 diff --git a/perl-install/ugtk2.pm b/perl-install/ugtk2.pm index ea084cf1e..0b4176af2 100644 --- a/perl-install/ugtk2.pm +++ b/perl-install/ugtk2.pm @@ -339,6 +339,7 @@ sub create_box_with_title { chomp(my $text = join("\n", @l)); my $wtext = gtknew('TextView', text => markup_to_TextView_format($text)); + $wtext->set_justification('fill'); $wtext->set_left_margin(3); $wtext->can_focus($has_scroll); my $width = 400; |