summaryrefslogtreecommitdiffstats
path: root/perl-install/ugtk2.pm
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 /perl-install/ugtk2.pm
parente241da0e6c74fd60ecc5e419e19d25e9406dacaa (diff)
downloaddrakx-4c5fecca3010be9265f15df26a763f1e308ca7dc.tar
drakx-4c5fecca3010be9265f15df26a763f1e308ca7dc.tar.gz
drakx-4c5fecca3010be9265f15df26a763f1e308ca7dc.tar.bz2
drakx-4c5fecca3010be9265f15df26a763f1e308ca7dc.tar.xz
drakx-4c5fecca3010be9265f15df26a763f1e308ca7dc.zip
(create_box_with_title) set saner margins
Diffstat (limited to 'perl-install/ugtk2.pm')
-rw-r--r--perl-install/ugtk2.pm3
1 files changed, 2 insertions, 1 deletions
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);