summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThierry Vignaud <tv@mandriva.org>2008-08-18 13:45:09 +0000
committerThierry Vignaud <tv@mandriva.org>2008-08-18 13:45:09 +0000
commit4c5fecca3010be9265f15df26a763f1e308ca7dc (patch)
treeee379399eea251f92e2f301ae9bb7e5d3ff3da6a
parente241da0e6c74fd60ecc5e419e19d25e9406dacaa (diff)
downloaddrakx-backup-do-not-use-4c5fecca3010be9265f15df26a763f1e308ca7dc.tar
drakx-backup-do-not-use-4c5fecca3010be9265f15df26a763f1e308ca7dc.tar.gz
drakx-backup-do-not-use-4c5fecca3010be9265f15df26a763f1e308ca7dc.tar.bz2
drakx-backup-do-not-use-4c5fecca3010be9265f15df26a763f1e308ca7dc.tar.xz
drakx-backup-do-not-use-4c5fecca3010be9265f15df26a763f1e308ca7dc.zip
(create_box_with_title) set saner margins
-rw-r--r--perl-install/install/NEWS4
-rw-r--r--perl-install/ugtk2.pm3
2 files changed, 5 insertions, 2 deletions
diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS
index cbb325a60..9240021d0 100644
--- a/perl-install/install/NEWS
+++ b/perl-install/install/NEWS
@@ -1,7 +1,9 @@
- align titles to the left
- display a separator below titles
- justify big texts
-- update language step
+- refresh:
+ o language step
+ o license step
Version 11.11 - 18 August 2008
diff --git a/perl-install/ugtk2.pm b/perl-install/ugtk2.pm
index 0b4176af2..39e0e5658 100644
--- a/perl-install/ugtk2.pm
+++ b/perl-install/ugtk2.pm
@@ -340,7 +340,8 @@ 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->set_left_margin(12);
+ $wtext->set_right_margin(12);
$wtext->can_focus($has_scroll);
my $width = 400;
my $scroll = gtknew('ScrolledWindow', child => $wtext, width => $width, height => 200);