diff options
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/NEWS | 2 | ||||
-rw-r--r-- | perl-install/ugtk3.pm | 3 |
2 files changed, 4 insertions, 1 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS index dde8765bf..5ada56703 100644 --- a/perl-install/NEWS +++ b/perl-install/NEWS @@ -1,3 +1,5 @@ +- all tools: + o fix banner icon being cliped (mga#12358) - drakfont: o fix crash (mga#13627) o fix crash with --windows_import (mga9347) diff --git a/perl-install/ugtk3.pm b/perl-install/ugtk3.pm index b65041e2c..de6c312c1 100644 --- a/perl-install/ugtk3.pm +++ b/perl-install/ugtk3.pm @@ -1545,7 +1545,8 @@ sub new { } else { $icon_img->set_margin_left(12); } - $icon_img->set_margin_top(($blue_part->get_height-$icon_w->get_height)/2-4); + $icon_img->set_margin_top(($blue_part->get_height-$icon_w->get_height)/2); + $w->{label} = $label; $w->set_size_request(-1, $d_height); |